Skip to content

Commit

Permalink
Ensure that features are applied in a fixed order when creating a pro…
Browse files Browse the repository at this point in the history
…ject

Closes gh-470
  • Loading branch information
rainboyan committed Aug 15, 2024
1 parent 3c4a9a1 commit 19d0dcc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ class CreateAppCommand extends ArgumentCompletingCommand implements ProfileRepos
return (profile.features.findAll { Feature f -> validFeatureNames.contains(f.name) } + profile.requiredFeatures).unique()
}

(profile.defaultFeatures + profile.requiredFeatures).unique()
(profile.defaultFeatures + profile.requiredFeatures).unique().sort()
}

protected String getDefaultProfile() {
Expand Down

0 comments on commit 19d0dcc

Please sign in to comment.