remove discontinued submodules if they are checked out

This commit is contained in:
Enno Rehling 2016-10-16 11:58:42 +02:00
parent 75422e1ba6
commit 0de30cd376
2 changed files with 2 additions and 0 deletions

View File

@ -33,6 +33,7 @@ if [ ! -d $ROOT/$BUILD ]; then
exit exit
fi fi
rm -rf crypto tolua
git submodule update git submodule update
echo "build eressea" echo "build eressea"

View File

@ -22,6 +22,7 @@ exit $2 # otherwise
function build() { function build() {
assert_dir $SOURCE assert_dir $SOURCE
cd $SOURCE cd $SOURCE
rm -rf crypto tolua
git fetch || abort "failed to update source. do you have local changes?" git fetch || abort "failed to update source. do you have local changes?"
[ -z $1 ] || git checkout $1 [ -z $1 ] || git checkout $1
git pull git pull