浏览代码

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

Karsten Böddeker 8 年之前
父节点
当前提交
5674fcb6c9
共有 1 个文件被更改,包括 2 次插入1 次删除
  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