From bcaa923ff2b058b5ec17671c06d1c93965324c3f Mon Sep 17 00:00:00 2001 From: Arthur Petukhovsky Date: Tue, 25 Feb 2025 18:53:34 +0100 Subject: [PATCH] Disable verbose logging in resize-swap-internal.sh --- neonvm-runner/cmd/disks.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neonvm-runner/cmd/disks.go b/neonvm-runner/cmd/disks.go index ea0c1b967..69d9cd5af 100644 --- a/neonvm-runner/cmd/disks.go +++ b/neonvm-runner/cmd/disks.go @@ -230,7 +230,7 @@ func createISO9660runtime( if swapSize != nil { lines := []string{ `#!/neonvm/bin/sh`, - `set -euxo pipefail`, + `set -euo pipefail`, // this script may be run as root, so we should avoid potentially-malicious path // injection `export PATH="/neonvm/bin"`,