Browse Source

build.sh: check if gluon got modified and bail out if necessary

Karsten Böddeker 8 years ago
parent
commit
5674fcb6c9
1 changed files with 2 additions and 1 deletions
  1. 2 1
      build.sh

+ 2 - 1
build.sh

@@ -114,7 +114,8 @@ pushd ${CODE_DIR} > /dev/null
 
 ### CHECKOUT GLUON
 progress "Checking out GLUON '${BASE}' ..."
-# TODO: check if gluon got modified and bail out if necessary
+# check if gluon got modified and bail out if necessary
+[ "$(git status --porcelain)" ] && abort "Local changes to peers directory. Cowardly refusing to update gluon repository." >&2
 git fetch
 git checkout -q ${BASE}
 [ "$?" -eq "0" ] || abort "Failed to checkout '${BASE}' gluon base version, mimimi." >&2