Skip to content
Snippets Groups Projects
Verified Commit 2c583bca authored by Julian Ospald's avatar Julian Ospald :tea:
Browse files

Fix NoAdjustCabalConfig on windows

parent ab36d441
No related branches found
No related tags found
No related merge requests found
Pipeline #47880 passed
...@@ -525,7 +525,7 @@ ask_cabal_config_init() { ...@@ -525,7 +525,7 @@ ask_cabal_config_init() {
esac esac
done done
else else
return 1 return 0
fi fi
;; ;;
esac esac
...@@ -543,8 +543,8 @@ do_cabal_config_init() { ...@@ -543,8 +543,8 @@ do_cabal_config_init() {
adjust_cabal_config adjust_cabal_config
;; ;;
0) 0)
echo "Make sure that your global cabal.config references the correct mingw64 paths (extra-prog-path, extra-include-dirs and extra-lib-dirs)." warn "Make sure that your global cabal.config references the correct mingw64 paths (extra-prog-path, extra-include-dirs and extra-lib-dirs)."
echo "And set the environment variable GHCUP_MSYS2 to the root path of your msys2 installation." warn "And set the environment variable GHCUP_MSYS2 to the root path of your msys2 installation."
sleep 5 sleep 5
return ;; return ;;
*) ;; *) ;;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment