Be sure to quote

This commit is contained in:
Kevin Cotugno 2017-10-19 23:00:27 -07:00
parent 847943f807
commit 98f0d68898

10
profile
View File

@ -3,12 +3,12 @@ if [[ -d "$HOME/dev" ]]; then
fi fi
if [[ -n "$(echo $SHELL | grep zsh)" ]]; then if [[ -n "$(echo $SHELL | grep zsh)" ]]; then
export ZSH=$HOME/.oh-my-zsh export ZSH="$HOME/.oh-my-zsh"
ZSH_THEME="jispwoso" ZSH_THEME="jispwoso"
plugins=(git) plugins=(git)
source $ZSH/oh-my-zsh.sh source "$ZSH/oh-my-zsh.sh"
fi fi
if [[ -d "$HOME/.rvm" ]]; then if [[ -d "$HOME/.rvm" ]]; then
@ -18,11 +18,11 @@ if [[ -d "$HOME/.rvm" ]]; then
fi fi
if [[ -d "$DEVPATH/android/android-sdk" ]]; then if [[ -d "$DEVPATH/android/android-sdk" ]]; then
export ANDROID_SDK=$HOME/dev/android/android-sdk export ANDROID_SDK="$HOME/dev/android/android-sdk"
fi fi
if [[ -d "$DEVPATH/android/android-ndk" ]]; then if [[ -d "$DEVPATH/android/android-ndk" ]]; then
export ANDROID_NDK=$HOME/dev/android/android-ndk export ANDROID_NDK="$HOME/dev/android/android-ndk"
fi fi
which go &> /dev/null which go &> /dev/null
@ -52,7 +52,7 @@ if [[ -f "$HOME/.ssh-sentinel.sh" ]]; then
source "$HOME/.ssh-sentinel.sh" source "$HOME/.ssh-sentinel.sh"
fi fi
export EDITOR='nvim' export EDITOR="nvim"
alias l="ls -lah" alias l="ls -lah"
alias ll="ls -lh" alias ll="ls -lh"