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.
1 parent 398fac3 commit 2cf01fcCopy full SHA for 2cf01fc
lib/interface/cli/commands/pipeline/run.base.js
@@ -100,7 +100,7 @@ class RunBaseCommand {
100
try {
101
await sdk.pipelines.get({ name: pipelineName });
102
} catch (err) {
103
- if (err.status === 404) {
+ if (err.statusCode === 404) {
104
throw new CFError({
105
message: `Passed pipeline id: ${pipelineName} does not exist`,
106
});
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "codefresh",
3
- "version": "0.75.30",
+ "version": "0.75.31",
4
"description": "Codefresh command line utility",
5
"main": "index.js",
6
"preferGlobal": true,
0 commit comments