Create get-ghcup.sh, fixes #36
This follows the style of the rustup installation script that has a friendly welcome message, tells you what the script is going to do, and then asks if you'd like to proceed. This is meant to be a one-command setup of everything you need to get started with Haskell.
I already had this written so adding it for comparison to #40. Would still need to update README and clean a few things up. Let me know what you think!
Merge request reports
Activity
150 fi 151 152 exit 0 153 fi 154 } 155 156 # @FUNCTION: source_ghcup_env_from_bashrc 157 # @USAGE: <no args> 158 # @DESCRIPTION: 159 # Check to see if the ghcup env file is sourced from .bashrc, if not add it. 160 source_ghcup_env_from_bashrc () { 161 # Check to see if the .bashrc file sources the ghcup environement file, if 162 # not then add it. 163 if [ -z "`cat "$HOME/.bashrc" | grep 'source "$HOME/.ghcup/env"'`" ]; then 164 echo "Updating $HOME/.bashrc to source ghcup environment file..." 165 echo 'source "$HOME/.ghcup/env"' >> $HOME/.bashrc Thanks, the messages in this PR are better, but I think feature wise https://github.com/haskell/ghcup/pull/40 is a bit more comprehensive, so maybe I'll improve the user facing messages.
150 fi 151 152 exit 0 153 fi 154 } 155 156 # @FUNCTION: source_ghcup_env_from_bashrc 157 # @USAGE: <no args> 158 # @DESCRIPTION: 159 # Check to see if the ghcup env file is sourced from .bashrc, if not add it. 160 source_ghcup_env_from_bashrc () { 161 # Check to see if the .bashrc file sources the ghcup environement file, if 162 # not then add it. 163 if [ -z "`cat "$HOME/.bashrc" | grep 'source "$HOME/.ghcup/env"'`" ]; then 164 echo "Updating $HOME/.bashrc to source ghcup environment file..." 165 echo 'source "$HOME/.ghcup/env"' >> $HOME/.bashrc Yeah I wasn't sold on this either, the rustup script does something similar, but adds it to .profile which is arguably the correct place. I used .bashrc to mirror the readme instructions but you're correct this could very well break things. It would be nice if system configuration was a bit more structured :)
150 fi 151 152 exit 0 153 fi 154 } 155 156 # @FUNCTION: source_ghcup_env_from_bashrc 157 # @USAGE: <no args> 158 # @DESCRIPTION: 159 # Check to see if the ghcup env file is sourced from .bashrc, if not add it. 160 source_ghcup_env_from_bashrc () { 161 # Check to see if the .bashrc file sources the ghcup environement file, if 162 # not then add it. 163 if [ -z "`cat "$HOME/.bashrc" | grep 'source "$HOME/.ghcup/env"'`" ]; then 164 echo "Updating $HOME/.bashrc to source ghcup environment file..." 165 echo 'source "$HOME/.ghcup/env"' >> $HOME/.bashrc