You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 24, 2020. It is now read-only.
# Bash script to run security updates on a Pantheon site.
##
# If there was an error, ask to remove the multi-dev. Then exit.
#
# @param string $message
# @param int $return_code
##
cleanup_on_error() {
>&2echo -e ""
>&2echo -e "${INVERSE}ERROR:"
>&2echo -e "$1${NOINVERSE}"
>&2echo -e ""
exit"$2";
}
# Used for questions and warnings.
UNDERLINE=$'\033[4m'
NOUNDERLINE=$'\033[24m'
# Used for options.
BOLD=$'\033[1m\033[36m'
NOBOLD=$'\033[39m\033[22m'
# Used for errors.
INVERSE=$'\033[7m'
NOINVERSE=$'\033[27m'
# Used for pro tips
TIP=$'\033[33m'
NOTIP=$'\033[39m'
cleanup_on_error 'This repository has been retired and merged into https://github.com/Advomatic/pantheon-tools Please use that new version instead.' 99