diff options
author | Jesús <heckyel@hyperbola.info> | 2020-06-01 20:26:43 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2020-06-01 20:26:43 -0500 |
commit | 24fee065719a94f22b1b8c8698b347098d3cdbb8 (patch) | |
tree | 5f1d8c88906dffc9f0a473639805c0bed059212d /build.sh | |
parent | 9d221d5af918803180f74cd9fcbf107d38b068de (diff) | |
download | librevideoconverter-24fee065719a94f22b1b8c8698b347098d3cdbb8.tar.lz librevideoconverter-24fee065719a94f22b1b8c8698b347098d3cdbb8.tar.xz librevideoconverter-24fee065719a94f22b1b8c8698b347098d3cdbb8.zip |
improve scripts
Diffstat (limited to 'build.sh')
-rw-r--r-- | build.sh | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 |