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
Daniel Flanagan e1c88a1392 paths!
2017-02-20 18:45:02 -06:00

11 lines
194 B
Bash

#!/usr/bin/env bash
export GOPATH="$HOME/.go"
# PATH=$PATH:$APPENDED_PATH
PATH=$PATH:$GOPATH/bin
if command -v ruby >/dev/null 2>&1; then
PATH="$(ruby -e 'print Gem.user_dir')/bin:$PATH"
fi