浏览代码

Fix version bump script

Neeraj Gupta 2 年之前
父节点
当前提交
9a2aa2980c
共有 1 个文件被更改,包括 7 次插入6 次删除
  1. 7 6
      scripts/bump_version.sh

+ 7 - 6
scripts/bump_version.sh

@@ -6,15 +6,16 @@ set -e
 # Go to the project root directory
 cd "$(dirname "$0")/.."
 
-# Check that the current branch is main
-if [[ $(git rev-parse --abbrev-ref HEAD) != "main" ]]; then
-  echo "Error: Not on main branch"
+# Check that there are no uncommitted changes
+git diff-index --quiet HEAD --
+if [ $? -ne 0 ]; then
+  echo "Error: There are uncommitted changes"
   exit 1
 fi
 
-# Check that there are no uncommitted changes
-if [[ $(git diff-index --quiet HEAD --) != 0 ]]; then
-  echo "Error: There are uncommitted changes"
+# Check that the current branch is main
+if [[ $(git rev-parse --abbrev-ref HEAD) != "main" ]]; then
+  echo "Error: Not on main branch"
   exit 1
 fi