Skip to content

Commit

Permalink
fix: changed order of commands
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSlimvReal committed Nov 21, 2023
1 parent 15fbb43 commit d84712f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit d84712f

Please sign in to comment.