Dont try to pull submodules if not possible
This commit is contained in:
parent
ea6968019c
commit
d5f8224786
@ -164,4 +164,4 @@ ewconfig-pull() {
|
|||||||
cd ~/.config/ewconfig
|
cd ~/.config/ewconfig
|
||||||
git pull
|
git pull
|
||||||
cd $cwd
|
cd $cwd
|
||||||
}
|
}
|
||||||
|
@ -6,8 +6,11 @@ export EWCONFIG_ROOT=$(dirname $(readlink -f $0))
|
|||||||
|
|
||||||
# Pull git submodules if needed
|
# Pull git submodules if needed
|
||||||
if type -p git > /dev/null; then
|
if type -p git > /dev/null; then
|
||||||
echo "Syncing git submodules..."
|
# If we have permission to run git
|
||||||
git submodule update --init --recursive
|
if [ -d "$EWCONFIG_ROOT/.git" ]; then
|
||||||
|
echo "Syncing git submodules..."
|
||||||
|
git submodule update --init --recursive
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Make sure scripts are all executable
|
# Make sure scripts are all executable
|
||||||
|
Loading…
x
Reference in New Issue
Block a user