Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
eddumelendez committed Mar 29, 2024
1 parent cef1235 commit 213056b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ public void stop() {
if (removeImages != null) {
cmd += " --rmi " + removeImages.dockerRemoveImagesType();
}
this.composeDelegate.runWithCompose(this.localCompose, cmd, env);
this.composeDelegate.runWithCompose(this.localCompose, cmd, this.env);
} finally {
this.project = this.composeDelegate.randomProjectId();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ public void stop() {
if (removeImages != null) {
cmd += " --rmi " + removeImages.dockerRemoveImagesType();
}
this.composeDelegate.runWithCompose(this.localCompose, cmd, env);
this.composeDelegate.runWithCompose(this.localCompose, cmd, this.env);
} finally {
this.project = this.composeDelegate.randomProjectId();
}
Expand Down

0 comments on commit 213056b

Please sign in to comment.