From d84712f652791d6f6c76e380689bb6a5f6a0d009 Mon Sep 17 00:00:00 2001 From: Simon Date: Tue, 21 Nov 2023 15:29:38 +0100 Subject: [PATCH] fix: changed order of commands --- src/app.controller.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app.controller.ts b/src/app.controller.ts index 273a1b1..cb9c35a 100644 --- a/src/app.controller.ts +++ b/src/app.controller.ts @@ -52,9 +52,9 @@ export class AppController { const args = `${deploymentInfo.name} ${deploymentInfo.email} ${ deploymentInfo.username - } ${deploymentInfo.backend ? 'y' : 'n'} ${ + } ${deploymentInfo.base} ${deploymentInfo.backend ? 'y' : 'n'} ${ deploymentInfo.monitor ? 'y' : 'n' - } ${deploymentInfo.base}`; + }`; console.log('args', args); const ws = fs.createWriteStream('dist/assets/arg-pipe'); ws.write(args);