mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-05 16:36:32 +00:00
13 lines
364 B
Bash
13 lines
364 B
Bash
#! /bin/bash
|
|
VIM_SETTINGS_DIR=$WORKSPACE/vim-settings
|
|
|
|
# Clone vundle if not done already
|
|
if [ ! -d $VIM_SETTINGS_DIR ]; then
|
|
log "Cloning vim-settings"
|
|
git clone https://github.com/ViViDboarder/vim-settings $VIM_SETTINGS_DIR
|
|
(cd $VIM_SETTINGS_DIR && ./vim-sync-append.sh)
|
|
else
|
|
log "Updating vim-settings"
|
|
(cd $VIM_SETTINGS_DIR && git pull)
|
|
fi
|