From 55eb2446c1623c3d0276be9d6ae6309c315bf975 Mon Sep 17 00:00:00 2001 From: Colin Edwards Date: Mon, 27 Feb 2017 17:31:15 -0600 Subject: [PATCH] CI: Fix true / false on stable builds --- CI/before-deploy-osx.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CI/before-deploy-osx.sh b/CI/before-deploy-osx.sh index f1369e957..80163c6b8 100755 --- a/CI/before-deploy-osx.sh +++ b/CI/before-deploy-osx.sh @@ -21,12 +21,12 @@ mv ./rundir/RelWithDebInfo/obs-plugins/obs-browser.so ./ # Package everything into a nice .app hr "Packaging .app" -STABLE=False +STABLE=false if [ -n "${TRAVIS_TAG}" ]; then - STABLE=TRUE + STABLE=true fi -sudo python ../CI/install/osx/build_app.py --public-key ../CI/install/osx/OBSPublicDSAKey.pem --sparkle-framework ../../sparkle/Sparkle.framework --base-url "https://obsproject.com/osx_update" --stable $STABLE +sudo python ../CI/install/osx/build_app.py --public-key ../CI/install/osx/OBSPublicDSAKey.pem --sparkle-framework ../../sparkle/Sparkle.framework --base-url "https://obsproject.com/osx_update" --stable=$STABLE # Move the CEF plugin back to where it belongs hr "Moving CEF back"