Skip to content

Commit

Permalink
fix: don't require project configuration for db dump
Browse files Browse the repository at this point in the history
  • Loading branch information
shyim committed Jan 13, 2024
1 parent b757531 commit c4513c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/project/project_dump.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ var projectDatabaseDumpCmd = &cobra.Command{
}

var projectCfg *shop.Config
if projectCfg, err = shop.ReadConfig(projectConfigPath, false); err != nil {
if projectCfg, err = shop.ReadConfig(projectConfigPath, true); err != nil {
if !strings.Contains(err.Error(), "cannot find .shopware-project.yml") {
return err
}
Expand Down

0 comments on commit c4513c5

Please sign in to comment.