From 6f9db0d1633d16093d7b5909ba74eb3191e738f5 Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Fri, 27 Apr 2012 13:17:03 -0700 Subject: [PATCH] tools.deploy: fix location of port-number file. --- basis/tools/deploy/test/5/5.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basis/tools/deploy/test/5/5.factor b/basis/tools/deploy/test/5/5.factor index 9118fa3ca7..3e6080bef7 100644 --- a/basis/tools/deploy/test/5/5.factor +++ b/basis/tools/deploy/test/5/5.factor @@ -4,7 +4,7 @@ http.client kernel ; : deploy-test-5 ( -- ) URL" http://localhost/foo.html" clone - "resource:port-number" ascii file-contents string>number >>port + "resource:temp/port-number" ascii file-contents string>number >>port http-get 2drop ; MAIN: deploy-test-5