소스 검색

Fix version bump script (#1152)

Neeraj Gupta 2 년 전
부모
커밋
61fe9c4b1c
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