Swiched Sync Directory Path to Absolute

This commit is contained in:
ViViDboarder 2012-10-23 10:52:47 -04:00
parent 4a26fbf8bd
commit 0e48c72c09
1 changed files with 3 additions and 1 deletions

View File

@ -10,7 +10,9 @@ if [ -f ~/.bashrc ]; then
fi
# Get current directory for future use in links
VIM_SYNC_DIR=${PWD}
VIM_SYNC_DIR=$(dirname $0)
cd $VIM_SYNC_DIR
VIM_SYNC_DIR=$(pwd)
# Verify git is installed (although needed to checkout
command -v git >/dev/null 2>&1 || {