Skip to content
This repository was archived by the owner on Jul 30, 2025. It is now read-only.

Commit 15e9acc

Browse files
committed
fix(plugins/plugin-core-support): IBM CodeEngine "up" ordering incorrect
We were trying to validate credentials before creating a project.
1 parent 593ca94 commit 15e9acc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

plugins/plugin-core-support/up/src/ibm/ce/creds.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ async function fix(args: Arguments<Options>) {
4747
}
4848

4949
export default {
50-
group: Group.ServiceAuthorization,
50+
group: Group.Compute,
5151
service,
5252

5353
label: (checkResult?: false | string) =>

plugins/plugin-core-support/up/src/ibm/ce/project.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ async function fix(args: Arguments<Options>) {
103103
}
104104

105105
export default {
106-
group: Group.Compute,
106+
group: Group.ServiceAuthorization,
107107
service,
108108

109109
label: (checkResult?: false | string) =>

0 commit comments

Comments
 (0)