From 359d871293e801dc9e5506b5002a4bf545c42662 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Thu, 30 Apr 2026 23:37:56 +0100 Subject: [PATCH] test(parallels): allow mac update script fallback user --- scripts/e2e/parallels/npm-update-smoke.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/e2e/parallels/npm-update-smoke.ts b/scripts/e2e/parallels/npm-update-smoke.ts index 497e3646370..aa280e87392 100755 --- a/scripts/e2e/parallels/npm-update-smoke.ts +++ b/scripts/e2e/parallels/npm-update-smoke.ts @@ -736,7 +736,7 @@ Remove-Item -Path $scriptPath, $logPath, $donePath, $exitPath -Force -ErrorActio if (write.status !== 0) { throw new Error(`failed to write guest script ${scriptPath}: ${write.stderr.trim()}`); } - const chmod = run("prlctl", ["exec", vm, "/bin/chmod", "700", scriptPath], { + const chmod = run("prlctl", ["exec", vm, "/bin/chmod", "755", scriptPath], { check: false, quiet: true, timeoutMs: 30_000,