From 5820a1c9cbcb439141ef7317a45a8a9a54886781 Mon Sep 17 00:00:00 2001 From: Volodymyr Kolesnykov Date: Wed, 27 Nov 2024 19:05:08 +0200 Subject: [PATCH] fix: wrong file --- src/bin/vip-app-list.js | 2 +- src/bin/vip-app.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/vip-app-list.js b/src/bin/vip-app-list.js index df21a56ff..4c08fc251 100755 --- a/src/bin/vip-app-list.js +++ b/src/bin/vip-app-list.js @@ -8,7 +8,7 @@ import { trackEvent } from '../lib/tracker'; const baseUsage = 'vip app list'; -command( { usage: baseUsage } ) +command( { format: true, usage: baseUsage } ) .examples( [ { usage: diff --git a/src/bin/vip-app.js b/src/bin/vip-app.js index f1aab251f..8c4efc97d 100755 --- a/src/bin/vip-app.js +++ b/src/bin/vip-app.js @@ -6,7 +6,7 @@ import app from '../lib/api/app'; import command, { getEnvIdentifier } from '../lib/cli/command'; import { trackEvent } from '../lib/tracker'; -command( { requiredArgs: 1, format: true } ) +command( { requiredArgs: 1 } ) .example( 'vip app list', 'Retrieve a list of applications that can be accessed by the current authenticated VIP-CLI user.'