Skip to content

Commit

Permalink
ledo template
Browse files Browse the repository at this point in the history
  • Loading branch information
paramah committed Sep 18, 2023
1 parent 1dab244 commit afb8043
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/modules/compose/create_compose.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
)

func CreateComposeFile(ctx *context.LedoContext, dockerProject helper.DockerProjectCfg, composeMode string) error {
if _, err := os.Stat("./container"); os.IsNotExist(err) {
err := os.Mkdir("./container", 0755)
if _, err := os.Stat("./docker"); os.IsNotExist(err) {
err := os.Mkdir("./docker", 0755)
if err != nil {
log.Fatal(err)
}
Expand Down

0 comments on commit afb8043

Please sign in to comment.