We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e629f7 commit 7fc89ebCopy full SHA for 7fc89eb
.github/workflows/check-package-gate.yml
@@ -57,7 +57,7 @@ jobs:
57
version=$(rpmspec --parse "$spec" | grep -E "^Version:\s*(.*)" | awk '{print $2}')
58
59
if [[ "$name" == "fdk-aac-free" || "$name" == "opus" ]]; then
60
- previous_version=$(git show ${{ env.base_sha }}:"$spec" | grep -E "^Version:\s*(.*)" | awk '{print $2}')
+ previous_version=$(rpmspec --parse <(git show ${{ env.base_sha }}:"$spec") | grep -E "^Version:\s*(.*)" | awk '{print $2}')
61
if [[ "$version" != "$previous_version" ]]; then
62
1>&2 echo "**** ERROR ****"
63
1>&2 echo "Spec '$spec' change is not allowed in Azure Linux."
0 commit comments