Minor change to linux deployment, print instead of write
parent
e5c880fcc2
commit
bfbedfaac3
|
@ -1,3 +1,5 @@
|
||||||
|
! Copyright (C) 2008 James Cash
|
||||||
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
USING: io io.files io.backend kernel namespaces sequences
|
USING: io io.files io.backend kernel namespaces sequences
|
||||||
system tools.deploy.backend tools.deploy.config assocs
|
system tools.deploy.backend tools.deploy.config assocs
|
||||||
hashtables prettyprint ;
|
hashtables prettyprint ;
|
||||||
|
@ -26,6 +28,6 @@ M: linux deploy* ( vocab -- )
|
||||||
[ bundle-name create-app-dir ] keep
|
[ bundle-name create-app-dir ] keep
|
||||||
[ bundle-name image-name ] keep
|
[ bundle-name image-name ] keep
|
||||||
namespace make-deploy-image
|
namespace make-deploy-image
|
||||||
bundle-name normalize-path [ "Binary deployed to " % % "." % ] "" make write
|
bundle-name normalize-path [ "Binary deployed to " % % "." % ] "" make print
|
||||||
] bind
|
] bind
|
||||||
] with-directory ;
|
] with-directory ;
|
Loading…
Reference in New Issue