Minor change to linux deployment, print instead of write

db4
James Cash 2008-04-11 14:38:47 -04:00
parent e5c880fcc2
commit bfbedfaac3
1 changed files with 3 additions and 1 deletions

View File

@ -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
system tools.deploy.backend tools.deploy.config assocs
hashtables prettyprint ;
@ -26,6 +28,6 @@ M: linux deploy* ( vocab -- )
[ bundle-name create-app-dir ] keep
[ bundle-name image-name ] keep
namespace make-deploy-image
bundle-name normalize-path [ "Binary deployed to " % % "." % ] "" make write
bundle-name normalize-path [ "Binary deployed to " % % "." % ] "" make print
] bind
] with-directory ;