From 8e092939ce93f18ddf67f8959c9e7cea513fc894 Mon Sep 17 00:00:00 2001 From: RevanProdigalKnight Date: Fri, 13 May 2022 21:44:32 -0600 Subject: [PATCH] Fix indentation --- src/Terminal/Parser.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Terminal/Parser.ts b/src/Terminal/Parser.ts index 9e44f250c..1ca4bb488 100644 --- a/src/Terminal/Parser.ts +++ b/src/Terminal/Parser.ts @@ -64,7 +64,7 @@ export function ParseCommand(command: string): (string | number | boolean)[] { lastQuote = c; // Otherwise if we're in a string argument, add the current character to it } else { - arg += c; + arg += c; } // If the current character is a space and we are not inside a string, parse the current argument // and start a new one