Skip to content
Snippets Groups Projects

Create get-ghcup.sh, fixes #36

Closed Matt Renaud requested to merge github/fork/m-renaud/master into master

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

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
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
  • Contributor

    Uh, no, never :)

    Changing user configuration files like bashrc is something that I don't want to do at all. This is very intrusive and may not even work, depending on how the bashrc file is structured.

  • Contributor

    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.

  • Matt Renaud
    Matt Renaud @m-renaud started a thread on commit fc982549
  • 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 :)

  • Ghost User
    Ghost User @ghost started a thread on commit fc982549
  • 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
    • Contributor

      I think it would be ok if this is interactive and asks in CAPITAL LETTERS IF YOU REALLY WANT US TO APPEND TO YOUR BASHRC ;)

    Please register or sign in to reply
    Loading