diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2017-09-16 20:16:17 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-09-17 09:54:04 -0700 |
commit | 2d2bb95482f29ffdee476322e7fca56d725c3fb6 (patch) | |
tree | 9eb3e9c843acee89b02002eb39da10754e740c32 /packaging | |
parent | 8d8e694b0dae1d84c27d76aa7c68749ab2a014ac (diff) | |
download | subsurface-2d2bb95482f29ffdee476322e7fca56d725c3fb6.tar.gz |
Mac packaging: add option to make bundle without creating DMG
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'packaging')
-rwxr-xr-x | packaging/macosx/make-package.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packaging/macosx/make-package.sh b/packaging/macosx/make-package.sh index 6aa46fb08..ba717bdb2 100755 --- a/packaging/macosx/make-package.sh +++ b/packaging/macosx/make-package.sh @@ -71,6 +71,10 @@ pushd Subsurface.app/Contents/PlugIns/grantlee ln -s . 5.0 popd +if [ "$1" = "-nodmg" ] ; then + exit 0 +fi + # copy things into staging so we can create a nice DMG rm -rf ./staging mkdir ./staging |