1

Dont try to pull submodules if not possible

This commit is contained in:
Evan Pratten 2023-10-19 10:42:14 -04:00
parent ea6968019c
commit d5f8224786
2 changed files with 6 additions and 3 deletions

View File

@ -164,4 +164,4 @@ ewconfig-pull() {
cd ~/.config/ewconfig
git pull
cd $cwd
}
}

View File

@ -6,8 +6,11 @@ export EWCONFIG_ROOT=$(dirname $(readlink -f $0))
# Pull git submodules if needed
if type -p git > /dev/null; then
echo "Syncing git submodules..."
git submodule update --init --recursive
# If we have permission to run git
if [ -d "$EWCONFIG_ROOT/.git" ]; then
echo "Syncing git submodules..."
git submodule update --init --recursive
fi
fi
# Make sure scripts are all executable