Skip to content

Commit

Permalink
feat: change error message for better readabillity
Browse files Browse the repository at this point in the history
  • Loading branch information
Jnoack331 authored and shyim committed Oct 9, 2023
1 parent 92d3e50 commit a3db72c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shop/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ func ReadConfig(fileName string, allowFallback bool) (*Config, error) {
return fillEmptyConfig(config), nil
}

return nil, fmt.Errorf("cannot find configuration %s, use shopware-cli project config init to create one", fileName)
return nil, fmt.Errorf("cannot find project configuration file \"%s\", use shopware-cli project config init to create one", fileName)
}

if err != nil {
Expand Down

0 comments on commit a3db72c

Please sign in to comment.