From 9193f64606cebaa1112250cf09bf2da00d8f9eca Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Tue, 12 Nov 2024 10:01:22 -0800 Subject: [PATCH] tools.deploy.unix: don't add .out on macos for now --- basis/tools/deploy/unix/unix.factor | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/basis/tools/deploy/unix/unix.factor b/basis/tools/deploy/unix/unix.factor index ebd15991655..490dd6bb616 100644 --- a/basis/tools/deploy/unix/unix.factor +++ b/basis/tools/deploy/unix/unix.factor @@ -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*