Skip to content

Commit

Permalink
feat: added base to command
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSlimvReal committed Nov 21, 2023
1 parent 5dbc78b commit 15fbb43
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app.controller.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ describe('AppController', () => {
await firstValueFrom(controller.deployApp(delpoymentData));

expect(mockWs.write).toHaveBeenCalledWith(
'test-name [email protected] test-username y n',
'test-name [email protected] test-username y n test-base',
);
expect(mockWs.close).toHaveBeenCalled();
});
Expand Down
2 changes: 1 addition & 1 deletion src/app.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export class AppController {
deploymentInfo.username
} ${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 15fbb43

Please sign in to comment.