From cfb21db57be5f01417691b6b9e037b8355209be4 Mon Sep 17 00:00:00 2001 From: Henrik Danielsson Date: Sat, 21 Mar 2020 01:23:11 +0100 Subject: [PATCH] Fix parsing RAM amount on non-English systems. (#9) Export LC_ALL=C to force free and friends back to English. --- quickemu | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/quickemu b/quickemu index 2bf91c7..0322fe3 100755 --- a/quickemu +++ b/quickemu @@ -1,4 +1,5 @@ #!/usr/bin/env bash +export LC_ALL=C function disk_delete() { if [ -e "${disk_img}" ]; then @@ -352,4 +353,4 @@ if [ -n "${SNAPSHOT_ACTION}" ]; then esac fi -vm_boot \ No newline at end of file +vm_boot