We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 180d2d7 + e0ed5cd commit c417a40Copy full SHA for c417a40
types/project.go
@@ -228,6 +228,11 @@ func (s Services) GetProfiles() []string {
228
229
// ApplyProfiles disables service which don't match selected profiles
230
func (p *Project) ApplyProfiles(profiles []string) {
231
+ for _, p := range profiles {
232
+ if p == "*" {
233
+ return
234
+ }
235
236
var enabled, disabled Services
237
for _, service := range p.Services {
238
if service.HasProfile(profiles) {
0 commit comments