Skip to content

Commit

Permalink
Fix default runner.
Browse files Browse the repository at this point in the history
  • Loading branch information
reitermarkus committed Sep 6, 2019
1 parent fca3a05 commit f597a9c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docker/linux-runner
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ fi
arch=$1
shift

if [ "$CROSS_RUNNER" = "" ]; then
CROSS_RUNNER=qemu-user
fi

# select qemu arch
qarch=$arch
case "$arch" in
Expand Down Expand Up @@ -41,7 +45,7 @@ case "$CROSS_RUNNER" in
native)
exec "${@}"
;;
qemu-user | "")
qemu-user)
exec qemu-$qarch "${@}"
;;
qemu-system)
Expand Down

0 comments on commit f597a9c

Please sign in to comment.