]> gitweb.factorcode.org Git - factor.git/commitdiff
mason.release.tidy: don't need with-resource-directory.
authorJohn Benediktsson <mrjbq7@gmail.com>
Tue, 15 Mar 2016 10:14:22 +0000 (03:14 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Tue, 15 Mar 2016 10:17:36 +0000 (03:17 -0700)
extra/mason/release/tidy/tidy-tests.factor

index 63c14df5476a824d1ea8bb9d1b75b763cffa9921..2fd5c5a008e4663b5b1913ed9b580b4481c64d2d 100644 (file)
@@ -2,20 +2,14 @@ USING: io.directories mason.config mason.release.tidy namespaces
 sequences system tools.test ;
 IN: mason.release.tidy.tests
 
-! Normally, these words are run in the factor subdirectory
-! of the build directory, and they look for a file named
-! build-support/cleanup there. Use with-directory here to
-! ensure we use the file from the current source tree instead.
-[
-    [ f ] [
-        macosx target-os [
-            "Factor.app" useless-files member?
-        ] with-variable
-    ] unit-test
+[ f ] [
+    macosx target-os [
+        "Factor.app" useless-files member?
+    ] with-variable
+] unit-test
 
-    [ t ] [
-        linux target-os [
-            "Factor.app" useless-files member?
-        ] with-variable
-    ] unit-test
-] with-resource-directory
+[ t ] [
+    linux target-os [
+        "Factor.app" useless-files member?
+    ] with-variable
+] unit-test