This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/shell/paths

16 lines
294 B
Plaintext
Raw Normal View History

2017-02-20 18:31:28 -06:00
#!/usr/bin/env bash
export GOPATH="$HOME/.go"
# PATH=$PATH:$APPENDED_PATH
PATH=$PATH:"$GOPATH/bin"
PATH=$PATH:"$DOTFILES_PATH/scripts/bin"
if [ -d "$HOME/.bin" ]; then
PATH=$PATH:"$HOME/.bin"
fi
2017-02-20 18:38:20 -06:00
if command -v ruby >/dev/null 2>&1; then
PATH="$(ruby -e 'print Gem.user_dir')/bin:$PATH"
fi