tools.deploy.macosx: tweak bundle vs exe logic
Must deploy an app bundle if the UI is used.db4
parent
d9a9155a80
commit
ec1b49fe51
|
@ -84,8 +84,11 @@ IN: tools.deploy.macosx
|
||||||
] bind
|
] bind
|
||||||
] with-directory ;
|
] with-directory ;
|
||||||
|
|
||||||
|
: deploy-app-bundle? ( -- ? )
|
||||||
|
deploy-console? get not deploy-ui? get or ;
|
||||||
|
|
||||||
M: macosx deploy* ( vocab -- )
|
M: macosx deploy* ( vocab -- )
|
||||||
! pass off to M: unix deploy* if we're building a console app
|
! pass off to M: unix deploy* if we're building a console app
|
||||||
deploy-console? get
|
deploy-app-bundle?
|
||||||
[ call-next-method ]
|
[ call-next-method ]
|
||||||
[ deploy-app-bundle ] if ;
|
[ deploy-app-bundle ] if ;
|
||||||
|
|
Loading…
Reference in New Issue