From 4c4b26b2e79ad7c204360fad0278b4a89c516a95 Mon Sep 17 00:00:00 2001 From: nirholas Date: Tue, 31 Mar 2026 10:24:11 +0000 Subject: [PATCH] =?UTF-8?q?=C2=A9=EF=B8=8F=20shellQuoting.ts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/bash/shellQuoting.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/bash/shellQuoting.ts b/src/utils/bash/shellQuoting.ts index c851891..d8dbf10 100644 --- a/src/utils/bash/shellQuoting.ts +++ b/src/utils/bash/shellQuoting.ts @@ -126,3 +126,4 @@ const NUL_REDIRECT_REGEX = /(\d?&?>+\s*)[Nn][Uu][Ll](?=\s|$|[|&;)\n])/g export function rewriteWindowsNullRedirect(command: string): string { return command.replace(NUL_REDIRECT_REGEX, '$1/dev/null') } +