diff options
author | EuAndreh <eu@euandre.org> | 2018-04-15 02:09:24 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2018-04-15 02:09:24 -0300 |
commit | d7ed1b6726288d6190d136c3c7f266204cb10138 (patch) | |
tree | d6929a2bd89512445c03a04de995eb0a82c49209 /bash | |
parent | Add nvm bash config (diff) | |
download | dotfiles-d7ed1b6726288d6190d136c3c7f266204cb10138.tar.gz dotfiles-d7ed1b6726288d6190d136c3c7f266204cb10138.tar.xz |
Use npmrc only on linux
Diffstat (limited to 'bash')
-rw-r--r-- | bash/symlinks.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bash/symlinks.sh b/bash/symlinks.sh index 62cf45b..2d9d6ef 100644 --- a/bash/symlinks.sh +++ b/bash/symlinks.sh @@ -10,7 +10,9 @@ ln -fs $DOTFILES/git/gitignore ~/.gitignore_global ln -fs $DOTFILES/git/bash_git.sh ~/.bash_git ln -fs $DOTFILES/sbclrc.lisp ~/.sbclrc ln -fs $DOTFILES/inputrc.conf ~/.inputrc -ln -fs $DOTFILES/nixos/npmrc.sh ~/.npmrc +isLinux && { + ln -fs $DOTFILES/nixos/npmrc.sh ~/.npmrc +} ln -fs $DOTFILES/git/mrconfig.ini ~/.mrconfig |