]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/tools/deploy/test/5/5.factor
Factor source files should not be executable
[factor.git] / basis / tools / deploy / test / 5 / 5.factor
index 9118fa3ca70f2f97daef6ec637f00201a2914f37..29ca4518e6cfff527d15b7c83a701f9086d1dc8a 100644 (file)
@@ -3,8 +3,7 @@ USING: accessors urls io.encodings.ascii io.files math.parser
 http.client kernel ;
 
 : deploy-test-5 ( -- )
-    URL" http://localhost/foo.html" clone
-    "resource:port-number" ascii file-contents string>number >>port
+    URL" http://apple.com" 
     http-get 2drop ;
 
 MAIN: deploy-test-5