Skip to content

Commit 080d09c

Browse files
committed
Fix
1 parent 8311cce commit 080d09c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: .github/scripts/tests_run.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ while [ ! -z "$1" ]; do
7272
chunk_run=1
7373
;;
7474
-q )
75-
if ! [ -d $QEMU_PATH ]; then
75+
if [ ! -d $QEMU_PATH ]; then
7676
echo "QEMU path $QEMU_PATH does not exist"
7777
exit 1
7878
fi

Diff for: .github/workflows/hil.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
chunks: ${{fromJson(needs.gen_chunks.outputs.chunks)}}
7373
runs-on: ubuntu-latest
7474
env:
75-
QEMU_INSTALL_PATH: "~"
75+
QEMU_INSTALL_PATH: "$HOME"
7676
steps:
7777
- name: Checkout repository
7878
uses: actions/checkout@v4

0 commit comments

Comments
 (0)