fix: Display correct architecture

This commit is contained in:
Kroese 2023-05-24 23:21:30 +02:00 committed by GitHub
parent e10d5b9305
commit 7bc9ccc5fe

View File

@ -18,7 +18,11 @@ fi
if [ -n "$HOST_CPU" ]; then
HOST_CPU="$HOST_CPU,,"
else
if [ "$ARCH" == "amd64" ]; then
HOST_CPU="QEMU, Virtual CPU, X86_64"
else
HOST_CPU="QEMU, Virtual CPU, $ARCH"
fi
fi
HOST_ARGS=()