We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c191efc + 3dc78d2 commit 01f51b4Copy full SHA for 01f51b4
.github/scripts/check-release.sh
@@ -10,7 +10,7 @@ if [ "$current_tag" != "$package_json_version" ]; then
10
exit 1
11
fi
12
13
-package_version_ts=$(grep "PACKAGE_VERSION =" src/package-version.ts | cut -d "=" -f 2- | tr -d " " | tr -d "'")
+package_version_ts=$(grep "PACKAGE_VERSION =" src/package-version.ts | cut -d "=" -f 2- | tr -d ';' | tr -d " " | tr -d "'")
14
if [ "$current_tag" != "$package_version_ts" ]; then
15
echo "Error: the current tag does not match the version in src/package-version.ts."
16
echo "$current_tag vs $package_version_ts"
0 commit comments