Comparing version 2.9.17 to 2.9.18
{ | ||
"name": "akkeris", | ||
"version": "2.9.17", | ||
"version": "2.9.18", | ||
"description": "Akkeris CLI", | ||
@@ -5,0 +5,0 @@ "main": "aka.js", |
@@ -171,3 +171,11 @@ "use strict" | ||
const app = await appkit.api.get('/apps/' + args.app); | ||
const pipeline = await appkit.api.get('/apps/' + args.app + '/pipeline-couplings'); | ||
let pipeline; | ||
try { | ||
pipeline = await appkit.api.get('/apps/' + args.app + '/pipeline-couplings'); | ||
} catch (err) { | ||
if (err.code !== 404) { | ||
throw err | ||
} | ||
} | ||
@@ -174,0 +182,0 @@ const ui = require('cliui')(); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
249242
6552