Fix $PATH ordering in README
Compare changes
+ 1
− 1
@@ -50,7 +50,7 @@ E.g.:
@@ -50,7 +50,7 @@ E.g.:
Security aware users may want to use the files from the [release page](https://gitlab.haskell.org/haskell/ghcup/tags/)
The README currently suggests to set your $PATH
like so:
export PATH="$HOME/.cabal/bin:$HOME/.ghcup/bin:$PATH"
However, this means the system-installed cabal
overrides the ghcup
installed cabal
. This recently bit me. Instead, I believe the $PATH
should be set like so:
export PATH="$HOME/.ghcup/bin:$HOME/.cabal/bin:$PATH"