Fix test -n that should be test -z

This commit is contained in:
Jan Felix Langenbach 2019-12-03 23:21:00 +01:00
parent bf4c5a5cf1
commit a10c2dbd22
1 changed files with 1 additions and 1 deletions

2
ghcup
View File

@ -1540,7 +1540,7 @@ set_ghc() {
# shellcheck disable=SC2046
edo ln $(optionv "-v") -sf "haddock-ghc${target_suffix}" "${BIN_LOCATION}/haddock${target_suffix}"
fi
if [ -n "${target_suffix}" ] && [ -f "${inst_location}/share" ] ; then
if [ -z "${target_suffix}" ] && [ -f "${inst_location}/share" ] ; then
# shellcheck disable=SC2046
edo ln $(optionv "-v") -sf ghc/"${myghcver}"/share "${BIN_LOCATION}/../share"
fi