Skip to content

Commit

Permalink
fix: storefront watch on older shopware versions, fixes #337
Browse files Browse the repository at this point in the history
  • Loading branch information
shyim committed Apr 14, 2024
1 parent 486c271 commit be9ca15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/project/project_storefront_watch.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func themeCompileSupportsActiveOnly(projectRoot string) bool {
return false
}

return !strings.Contains(string(bytes), "active-only")
return strings.Contains(string(bytes), "active-only")
}

func init() {
Expand Down

0 comments on commit be9ca15

Please sign in to comment.