Skip to content

Commit

Permalink
fix: Display correct architecture
Browse files Browse the repository at this point in the history
  • Loading branch information
kroese committed May 24, 2023
1 parent 018d2ff commit e0e089a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion run/serial.sh
Expand Up @@ -18,7 +18,11 @@ fi
if [ -n "$HOST_CPU" ]; then
HOST_CPU="$HOST_CPU,,"
else
HOST_CPU="QEMU, Virtual CPU, X86_64"
if [ "$ARCH" == "amd64" ]; then
HOST_CPU="QEMU, Virtual CPU, X86_64"
else
HOST_CPU="QEMU, Virtual CPU, $ARCH"
fi
fi

HOST_ARGS=()
Expand Down

0 comments on commit e0e089a

Please sign in to comment.