Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mdelapenya committed Apr 3, 2024
1 parent 7631a30 commit 55d2320
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion modules/compose/compose_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,6 @@ func (d *dockerCompose) Up(ctx context.Context, opts ...StackUpOption) error {
Wait: upOptions.Wait,
},
})

if err != nil {
return err
}
Expand Down
2 changes: 1 addition & 1 deletion modules/compose/compose_local.go
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ func executeCompose(dc *LocalDockerCompose, args []string) ExecError {
}

// initialise the command with the compose subcommand
var cmds = []string{dc.composeSubcommand}
cmds := []string{dc.composeSubcommand}
pwd := "."
if len(dc.absComposeFilePaths) > 0 {
pwd, _ = filepath.Split(dc.absComposeFilePaths[0])
Expand Down

0 comments on commit 55d2320

Please sign in to comment.