summaryrefslogtreecommitdiffstats
path: root/packaging/makeself/install-or-update.sh
diff options
context:
space:
mode:
authorMansour Behabadi <57921115+ncmans@users.noreply.github.com>2019-12-20 23:16:23 +1100
committerGitHub <noreply@github.com>2019-12-20 23:16:23 +1100
commitd0e424144749a9748c5de4f0888d8e8ec5647b78 (patch)
tree664323313c1325d6703ba3b9f660ee2c74fa57ac /packaging/makeself/install-or-update.sh
parent91a8e3bb23b879e8312f848ffef560299bcbe43b (diff)
packaging: Set default release channel to stable for gh releases (#7399)
* packaging: Set default release channel to stable for gh releases * Leave kickstart files alone * Update .travis/create_artifacts.sh Co-Authored-By: Konstantinos Natsakis <5933427+knatsakis@users.noreply.github.com> Co-authored-by: Mansour Behabadi <mansour@oxplot.com> Co-authored-by: Konstantinos Natsakis <5933427+knatsakis@users.noreply.github.com>
Diffstat (limited to 'packaging/makeself/install-or-update.sh')
-rwxr-xr-xpackaging/makeself/install-or-update.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/packaging/makeself/install-or-update.sh b/packaging/makeself/install-or-update.sh
index afbe83530e..c287fd38c1 100755
--- a/packaging/makeself/install-or-update.sh
+++ b/packaging/makeself/install-or-update.sh
@@ -25,14 +25,16 @@ fi
STARTIT=1
AUTOUPDATE=0
-RELEASE_CHANNEL="nightly"
+RELEASE_CHANNEL="nightly" # check .travis/create_artifacts.sh before modifying
while [ "${1}" ]; do
case "${1}" in
"--dont-start-it") STARTIT=0;;
"--auto-update"|"-u") AUTOUPDATE=1;;
"--stable-channel") RELEASE_CHANNEL="stable";;
+ "--nightly-channel") RELEASE_CHANNEL="nightly";;
"--disable-telemetry") DISABLE_TELEMETRY=1;;
+
*) echo >&2 "Unknown option '${1}'. Ignoring it.";;
esac
shift 1