We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d9a0ae0 + b6ea399 commit 10f02eaCopy full SHA for 10f02ea
1 file changed
scripts/milestone-release.sh
@@ -75,10 +75,10 @@ if ! [[ $(git status --porcelain -u no --branch) == "## main...origin/main" ]]
75
fi
76
77
ORIGINAL_BRANCH=""
78
-if git status --porcelain -u no --branch == "## main...origin/main"; then
+if [[ $(git status --porcelain -u no --branch) == "## main...origin/main" ]]; then
79
ORIGINAL_BRANCH="main";
80
81
-if git status --porcelain -u no --branch == "## develop...origin/develop"; then
+if [[ $(git status --porcelain -u no --branch) == "## develop...origin/develop" ]]; then
82
ORIGINAL_BRANCH="develop";
83
84
0 commit comments