Skip to content

Commit

Permalink
fix a bug where 2 RUN commands are in the same line
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkobrombin committed May 6, 2023
1 parent 1c64b17 commit 60ddfd5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ func BuildContainerfile(recipe *Recipe, cmds []ModuleCommand) error {
}
}

_, err = containerfile.WriteString(unifiedCmd)
_, err = containerfile.WriteString(fmt.Sprintf("%s\n", unifiedCmd))
if err != nil {
return err
}
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
)

var (
Version = "0.2.4"
Version = "0.2.5"
)

func main() {
Expand Down

0 comments on commit 60ddfd5

Please sign in to comment.