tools.deploy: fix location of port-number file.

db4
John Benediktsson 2012-04-27 13:17:03 -07:00
parent ccf6a27191
commit 6f9db0d163
1 changed files with 1 additions and 1 deletions

View File

@ -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