@catladder/cli 1.136.3 → 1.136.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -52,7 +52,7 @@
52
52
  }
53
53
  ],
54
54
  "license": "MIT",
55
- "version": "1.136.3",
55
+ "version": "1.136.5",
56
56
  "scripts": {
57
57
  "lint": "eslint \"src/**/*.ts\"",
58
58
  "lint:fix": "eslint \"src/**/*.ts\" --fix",
@@ -71,7 +71,7 @@
71
71
  "node": ">=12.0.0"
72
72
  },
73
73
  "devDependencies": {
74
- "@catladder/pipeline": "1.136.3",
74
+ "@catladder/pipeline": "1.136.5",
75
75
  "@gitbeaker/rest": "^39.28.0",
76
76
  "@kubernetes/client-node": "^0.16.2",
77
77
  "@tsconfig/node14": "^1.0.1",
@@ -69,7 +69,8 @@ const upsertGcloudServiceAccount = async (
69
69
  }
70
70
 
71
71
  return await exec(
72
- `gcloud iam service-accounts keys create /dev/stdout --iam-account=${fullIdentifier}`
72
+ // on some platforms /dev/stdout is not available without the pipe
73
+ `gcloud iam service-accounts keys create /dev/stdout --iam-account=${fullIdentifier} | cat`
73
74
  ).then((o) => o.stdout);
74
75
  };
75
76