diff options
-rw-r--r-- | bashrc | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/bashrc b/bashrc index b48f69b..5bcf568 100644 --- a/bashrc +++ b/bashrc @@ -30,8 +30,7 @@ alias g="git" alias k="kubectl" alias camera-backup="pbackup --bucket fcuny-photos --project fcuny-backups --import-path /Volumes/a6000/DCIM/100MSDCF/" -alias docker-restart="docker-machine restart default" -alias get-transactions="transactions --dataset fcuny_finance_transactions --project fcuny-devel" +alias get-transactions="transactions --dataset fcuny_finance_transactions --project fcuny-simple" alias gobknest="ssh -K bookkeeper@nest.smfc.twitter.com" alias goebnest="ssh -K eventbus@nest.smfc.twitter.com" @@ -41,11 +40,9 @@ alias gonest="ssh -K nest.smfc.twitter.com" [ -d "${HOME}/bin" ] && PATH="${HOME}/bin:${PATH}" [ -d "${GOPATH}/bin" ] && PATH="${GOPATH}/bin:${PATH}" [ -d "${HOME}/src/source/dist" ] && PATH="${HOME}/src/source/dist:${PATH}" -[ -f "${HOME}/google-cloud-sdk/path.bash.inc" ] && source "${HOME}/google-cloud-sdk/path.bash.inc" -[ -f "${HOME}/google-cloud-sdk/completion.bash.inc" ] && source "${HOME}/google-cloud-sdk/completion.bash.inc" +[ -f "/opt/google-cloud-sdk/path.bash.inc" ] && source "/opt/google-cloud-sdk/path.bash.inc" +[ -f "/opt/google-cloud-sdk/completion.bash.inc" ] && source "/opt/google-cloud-sdk/completion.bash.inc" [ -d "/opt/twitter/opt/go/libexec/bin" ] && PATH="/opt/twitter/opt/go/libexec/bin:${PATH}" [ -d "/opt/twitter/bin" ] && PATH="/opt/twitter/bin:${PATH}" [ -f /opt/twitter/rvm/scripts/rvm ] && source /opt/twitter/rvm/scripts/rvm - - |