From 71d4c2f0545630bfe5a179f61a6a9644bc5e3c44 Mon Sep 17 00:00:00 2001 From: Jan Felix Langenbach Date: Tue, 3 Dec 2019 23:30:41 +0100 Subject: [PATCH] Fix test -f that should be test -d --- ghcup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghcup b/ghcup index dfab98b..12b90bd 100755 --- a/ghcup +++ b/ghcup @@ -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