Fix test -f that should be test -d

This commit is contained in:
Jan Felix Langenbach 2019-12-03 23:30:41 +01:00
parent a10c2dbd22
commit 71d4c2f054
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 [ -z "${target_suffix}" ] && [ -f "${inst_location}/share" ] ; then
if [ -z "${target_suffix}" ] && [ -d "${inst_location}/share" ] ; then
# shellcheck disable=SC2046
edo ln $(optionv "-v") -sf ghc/"${myghcver}"/share "${BIN_LOCATION}/../share"
fi