mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-10-31 23:46:33 +00:00
13 lines
374 B
Bash
Executable File
13 lines
374 B
Bash
Executable File
#! /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
|