Skip to content

Commit

Permalink
add missing macro expansion
Browse files Browse the repository at this point in the history
  • Loading branch information
rikenm1 committed Feb 6, 2025
1 parent 8e629f7 commit 7fc89eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/check-package-gate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
version=$(rpmspec --parse "$spec" | grep -E "^Version:\s*(.*)" | awk '{print $2}')
if [[ "$name" == "fdk-aac-free" || "$name" == "opus" ]]; then
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}')
if [[ "$version" != "$previous_version" ]]; then
1>&2 echo "**** ERROR ****"
1>&2 echo "Spec '$spec' change is not allowed in Azure Linux."
Expand Down

0 comments on commit 7fc89eb

Please sign in to comment.