mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-09 23:06:38 -05:00
15 lines
381 B
Bash
Executable file
15 lines
381 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
#Update pathogen bundles
|
|
pushd bundle > /dev/null 2>&1
|
|
for each in *; do
|
|
if [ -d "$each" ]; then
|
|
pushd "$each" > /dev/null 2>&1
|
|
if [ -d .git ]; then
|
|
echo "Updating ${each}..."
|
|
git pull
|
|
fi
|
|
popd > /dev/null 2>&1
|
|
fi
|
|
done
|
|
popd > /dev/null 2>&1
|