diff --git a/install.sh b/install.sh index 57b1fc1454fa6..cdb0bed420223 100755 --- a/install.sh +++ b/install.sh @@ -118,16 +118,19 @@ echo_standalone_postinstall() { return fi - channel=mainline + channel= advisory="To install our stable release (v${STABLE_VERSION}), use the --stable flag. " - if [ "${MAINLINE}" = 0 ]; then - channel=stable + if [ "${STABLE}" = 1 ]; then + channel="stable " advisory="" fi + if [ "${MAINLINE}" = 1 ]; then + channel="mainline " + fi cath <