aboutsummaryrefslogtreecommitdiffstats
path: root/build.sh
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2020-06-01 20:26:43 -0500
committerJesús <heckyel@hyperbola.info>2020-06-01 20:26:43 -0500
commit24fee065719a94f22b1b8c8698b347098d3cdbb8 (patch)
tree5f1d8c88906dffc9f0a473639805c0bed059212d /build.sh
parent9d221d5af918803180f74cd9fcbf107d38b068de (diff)
downloadlibrevideoconverter-24fee065719a94f22b1b8c8698b347098d3cdbb8.tar.lz
librevideoconverter-24fee065719a94f22b1b8c8698b347098d3cdbb8.tar.xz
librevideoconverter-24fee065719a94f22b1b8c8698b347098d3cdbb8.zip
improve scripts
Diffstat (limited to 'build.sh')
-rw-r--r--build.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/build.sh b/build.sh
index 7052441..dcb6569 100644
--- a/build.sh
+++ b/build.sh
@@ -2,21 +2,21 @@
set -e
-if [ -z ${SANDBOX_PATH} ]; then
+if [ -z "${SANDBOX_PATH}" ]; then
echo "you must set SANDBOX_PATH to point to the built LibreVideoConverter sandbox"
exit 1
fi
-if [ -z ${BKIT_PATH} ]; then
+if [ -z "${BKIT_PATH}" ]; then
echo "you must set BKIT_PATH to point to the LibreVideoConverter binary kit"
exit
fi
export MACOSX_DEPLOYMENT_TARGET=10.6
-${SANDBOX_PATH}/Frameworks/Python.framework/Versions/2.7/bin/python setup.py develop
+"${SANDBOX_PATH}/Frameworks/Python.framework/Versions/2.7/bin/python" setup.py develop
-${SANDBOX_PATH}/Frameworks/Python.framework/Versions/2.7/bin/python setup.py py2app
+"${SANDBOX_PATH}/Frameworks/Python.framework/Versions/2.7/bin/python" setup.py py2app
if [ "$1" = "--sign" ]; then
source sign.sh