Skip to content

Commit

Permalink
fix: remove console.log
Browse files Browse the repository at this point in the history
Signed-off-by: Emilien Escalle <[email protected]>
  • Loading branch information
neilime committed Jun 17, 2024
1 parent ca9b622 commit e5813a5
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion dist/post.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion src/post.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ const callback: RunCallback = async (
loggerService: LoggerService,
dockerComposeService: DockerComposeService
) => {
console.log("ok");
const { error, output } = await dockerComposeService.logs(inputs);

if (error) {
Expand Down
2 changes: 1 addition & 1 deletion src/services/input.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export class InputService {

private getComposeFiles(): string[] {
const cwd = this.getCwd();
const composeFiles = getMultilineInput(InputNames.ComposeFile).filter((composeFile) => {
const composeFiles = getMultilineInput(InputNames.ComposeFile).filter((composeFile: string) => {
if (!composeFile.length) {
return false;
}
Expand Down

0 comments on commit e5813a5

Please sign in to comment.