Improve error messages

This commit is contained in:
Julian Ospald 2018-09-30 16:11:56 +08:00
parent ce314365dd
commit 894a279a2d
No known key found for this signature in database
GPG Key ID: 511B62C09D50CD28
1 changed files with 6 additions and 3 deletions

9
ghcup
View File

@ -707,9 +707,12 @@ rm_ghc() {
done
edo rm -r "${inst_location}"
status_message "Successfully removed GHC ${myghcver}, you might have to"
status_message "set the currently active GHC now to fix dangling symlinks:"
status_message " ghcup set <ghcver>"
status_message "Successfully removed GHC ${myghcver}."
if [ ! -e "${BIN_LOCATION}"/ghc ] ; then
warning_message "Currently active GHC is a dangling symlink, run:"
warning_message " ghcup set <ghcver>"
fi
else
warning_message "${myghcver} doesn't appear to be installed, skipping"
fi