Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
arenekosreal committed Dec 14, 2023
1 parent 5ca3ca2 commit 75f6b30
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
interpreter=$(grep interpreter "$file" | sed 's/interpreter //')
flags=$(grep flags "$file" | sed 's/flags: //')
echo "$interpreter's flags is $flags"
if [[ "$interpreter" =~ aarch64- ]] && [[ "$flags" != "OCF" ]]
if [[ "$interpreter" =~ aarch64- ]] && ! [[ "$flags" =~ OCF ]]
then
result=false
break
Expand Down
2 changes: 1 addition & 1 deletion start-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ function check_qemu_flags() {
interpreter=$(grep interpreter "$file" | sed 's/interpreter //')
flags=$(grep flags "$file" | sed 's/flags: //')
# aarch64_be matches aarch64
if [[ "$interpreter" =~ aarch64- ]] && [[ "$flags" != "OCF" ]]
if [[ "$interpreter" =~ aarch64- ]] && ! [[ "$flags" =~ OCF ]]
then
result=1
break
Expand Down

0 comments on commit 75f6b30

Please sign in to comment.