From 63040b7032663a209a55b532d0341cc0ba01b5b0 Mon Sep 17 00:00:00 2001 From: Benjamin Schubert Date: Wed, 13 Sep 2017 12:36:19 -0400 Subject: [PATCH] Fix paths in mac deploy scripts --- src/create-dmg.sh | 4 ++-- src/mac_deploy.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/create-dmg.sh b/src/create-dmg.sh index df82962..a8876d9 100755 --- a/src/create-dmg.sh +++ b/src/create-dmg.sh @@ -13,7 +13,7 @@ fi APP_NAME="OpenSkyStacker" VERSION="v0.1.1-alpha" DMG_BACKGROUND_IMG="dng-background.png" -APP_PATH="build" +APP_PATH="../bin" # you should not need to change these APP_EXE="${APP_NAME}.app/Contents/MacOS/${APP_NAME}" @@ -134,4 +134,4 @@ rm -rf "${STAGING_DIR}" echo 'Done.' -exit \ No newline at end of file +exit diff --git a/src/mac_deploy.sh b/src/mac_deploy.sh index ece3781..6549f21 100755 --- a/src/mac_deploy.sh +++ b/src/mac_deploy.sh @@ -1,6 +1,6 @@ #!/bin/bash -DEFAULT_APP_PATH=build/OpenSkyStacker.app +DEFAULT_APP_PATH=../bin/OpenSkyStacker.app APP_PATH=$1 if [ "$1" = "" ]; then