Last active
March 20, 2020 21:19
-
-
Save munshkr/54df21439b13549d6de06d20b8d8dfc3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -eu -o pipefail | |
text=" | |
# Add global npm packages to PATH | |
export PATH=\$HOME/.npm-global/bin:\$PATH" | |
mkdir -p ~/.npm-global | |
npm config set prefix '~/.npm-global' | |
echo $text >> $HOME/.profile | |
source ~/.profile | |
echo "Done!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment