Fixes so that the login shell bits work properly on Ubuntu

This commit is contained in:
Danielle McLean 2016-10-08 00:27:15 +11:00
parent 68d5f293cf
commit d35dcd9699
3 changed files with 6 additions and 6 deletions

View file

@ -1,6 +1,6 @@
#! zsh
local newbins=()
local -a newbins
# go
[[ -z $GOPATH ]] && export GOPATH=~/.go
@ -16,7 +16,7 @@ if whence rock >/dev/null; then
fi
# ruby
newbins+=(~/.gem/ruby/*/bin)
newbins+=(~/.gem/ruby/*/bin(N))
# perl
export PERL_LOCAL_LIB_ROOT="$HOME/perl5:$PERL_LOCAL_LIB_ROOT"