We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30f8f3e commit 65db9c4Copy full SHA for 65db9c4
release.sh
@@ -29,8 +29,8 @@ VER_FILE="version/version.go"
29
TOML_TMPL_FILE="pkg/generator/templates.go"
30
CURR_VER_VER_FILE="$(sed -nr 's/Version = "(.+)"/\1/p' "$VER_FILE" | tr -d '\s\t\n')"
31
CURR_VER_TMPL_FILE="$(sed -nr 's/.*".*v(.+)".*#osdk_version_annotation/v\1/p' "$TOML_TMPL_FILE" | tr -d '\s\t\n')"
32
-if [ "$CURR_VER" != "$CURR_VER_VER_FILE" ] \
33
- || [ "$CURR_VER" != "$CURR_VER_TMPL_FILE" ]; then
+if [ "$VER" != "$CURR_VER_VER_FILE" ] \
+ || [ "$VER" != "$CURR_VER_TMPL_FILE" ]; then
34
echo "versions are not set correctly in $VER_FILE or $TOML_TMPL_FILE"
35
exit 1
36
fi
0 commit comments