Skip to content

Commit

Permalink
chore: fix path error in legacy app
Browse files Browse the repository at this point in the history
  • Loading branch information
shreddedbacon committed Oct 24, 2024
1 parent 656b2a6 commit 327d322
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ func findLocalProjectRoot(path string) (string, error) {
return path, nil
}
}
return "", fmt.Errorf("no %s file was found in this directory or any parent", filepath.Join(".lagoon.yml"))
return "", fmt.Errorf("no .lagoon.yml file was found in this directory or any parent")
}

// FileExists checks a file's existence
Expand Down

0 comments on commit 327d322

Please sign in to comment.