From b38573d4880ee117a3b3e5e9988ec58cb58aeaae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Lemaire?= Date: Mon, 6 Sep 2021 00:18:46 +0200 Subject: [PATCH] Fix for trailing new line in flags --- src/normalize.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/normalize.ts b/src/normalize.ts index 5380f8f..3bfed58 100755 --- a/src/normalize.ts +++ b/src/normalize.ts @@ -174,6 +174,7 @@ export class ProjectNormalizer { "--inspect", ].concat( (await this.readContent("config/run.flags")) + .trim() .split(" ") .filter((part) => !!part), ),