Skip to content

Commit

Permalink
tools.deploy.unix: don't add .out on macos for now
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjbq7 committed Nov 12, 2024
1 parent 0ea5b45 commit 9193f64
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions basis/tools/deploy/unix/unix.factor
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
! Copyright (C) 2008 James Cash
! See https://factorcode.org/license.txt for BSD license.
USING: combinators io.backend io.directories io.files.info.unix
io.pathnames kernel namespaces system tools.deploy.backend
tools.deploy.config tools.deploy.config.editor sequences ;
io.pathnames kernel namespaces sequences system
tools.deploy.backend tools.deploy.config
tools.deploy.config.editor ;
IN: tools.deploy.unix

CONSTANT: extension ".out"

: create-app-dir ( vocab bundle-name -- vm-path )
[ extension append ] dip
[ os macos? [ extension append ] unless ] dip
copy-vm dup 0o755 set-file-permissions ;

M: unix deploy*
Expand Down

0 comments on commit 9193f64

Please sign in to comment.