Add BOOTSTRAP_HASKELL_VERBOSE env variable

This commit is contained in:
Julian Ospald 2019-10-21 15:40:11 +08:00
parent 7440c26f82
commit 1280acf40e
No known key found for this signature in database
GPG Key ID: 511B62C09D50CD28

View File

@ -15,6 +15,14 @@ edo()
"$@" || die "\"$*\" failed!" "$@" || die "\"$*\" failed!"
} }
eghcup() {
if [ -z "${BOOTSTRAP_HASKELL_VERBOSE}" ] ; then
edo ghcup "$@"
else
edo ghcup --verbose "$@"
fi
}
echo echo
echo "Welcome to Haskell!" echo "Welcome to Haskell!"
echo echo
@ -44,7 +52,7 @@ edo mkdir -p "${GHCUP_INSTALL_BASE_PREFIX}"/.ghcup/bin
if command -V "ghcup" >/dev/null 2>&1 ; then if command -V "ghcup" >/dev/null 2>&1 ; then
if [ -z "${BOOTSTRAP_HASKELL_NO_UPGRADE}" ] ; then if [ -z "${BOOTSTRAP_HASKELL_NO_UPGRADE}" ] ; then
edo ghcup upgrade eghcup upgrade
fi fi
else else
edo curl --silent https://gitlab.haskell.org/haskell/ghcup/raw/master/ghcup > "${GHCUP_INSTALL_BASE_PREFIX}"/.ghcup/bin/ghcup edo curl --silent https://gitlab.haskell.org/haskell/ghcup/raw/master/ghcup > "${GHCUP_INSTALL_BASE_PREFIX}"/.ghcup/bin/ghcup
@ -72,10 +80,10 @@ if [ -z "${BOOTSTRAP_HASKELL_NONINTERACTIVE}" ] ; then
read -r answer </dev/tty read -r answer </dev/tty
fi fi
edo ghcup --cache install eghcup --cache install
edo ghcup set eghcup set
edo ghcup --cache install-cabal eghcup --cache install-cabal
edo cabal new-update edo cabal new-update
@ -97,7 +105,7 @@ if [ -z "${BOOTSTRAP_HASKELL_NONINTERACTIVE}" ] ; then
printf "\\033[0;35m%s\\033[0m\\n" "" printf "\\033[0;35m%s\\033[0m\\n" ""
read -r next_answer </dev/tty read -r next_answer </dev/tty
case $next_answer in case $next_answer in
[Yy]*) [Yy]*)
echo "source $GHCUP_INSTALL_BASE_PREFIX/.ghcup/env" >> "${HOME}/.bashrc" echo "source $GHCUP_INSTALL_BASE_PREFIX/.ghcup/env" >> "${HOME}/.bashrc"