Skip to content

Commit 7fc89eb

Browse files
committed
add missing macro expansion
1 parent 8e629f7 commit 7fc89eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/check-package-gate.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
version=$(rpmspec --parse "$spec" | grep -E "^Version:\s*(.*)" | awk '{print $2}')
5858
5959
if [[ "$name" == "fdk-aac-free" || "$name" == "opus" ]]; then
60-
previous_version=$(git show ${{ env.base_sha }}:"$spec" | grep -E "^Version:\s*(.*)" | awk '{print $2}')
60+
previous_version=$(rpmspec --parse <(git show ${{ env.base_sha }}:"$spec") | grep -E "^Version:\s*(.*)" | awk '{print $2}')
6161
if [[ "$version" != "$previous_version" ]]; then
6262
1>&2 echo "**** ERROR ****"
6363
1>&2 echo "Spec '$spec' change is not allowed in Azure Linux."

0 commit comments

Comments
 (0)