From 3de39a58d19a5d1cbb51d41942f40dca1b478bd4 Mon Sep 17 00:00:00 2001 From: roi-codefresh <60569147+roi-codefresh@users.noreply.github.com> Date: Wed, 17 Jun 2020 14:16:10 +0300 Subject: [PATCH] wip (#499) --- lib/interface/cli/commands/agent/uninstall.cmd.js | 2 +- lib/interface/cli/commands/monitor/uninstall.cmd.js | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/interface/cli/commands/agent/uninstall.cmd.js b/lib/interface/cli/commands/agent/uninstall.cmd.js index 93197495f..446149263 100644 --- a/lib/interface/cli/commands/agent/uninstall.cmd.js +++ b/lib/interface/cli/commands/agent/uninstall.cmd.js @@ -80,7 +80,7 @@ const unInstallAgentCmd = new Command({ logFormatting: DefaultLogFormatter, }); if (exitCode === 0) { - console.log('Agent uninsalled successfully'); + console.log('Agent uninstalled successfully'); await deleteAgent.handler({ name, id: name }); } if (terminateProcess !== false) { diff --git a/lib/interface/cli/commands/monitor/uninstall.cmd.js b/lib/interface/cli/commands/monitor/uninstall.cmd.js index 833b71b87..84088a1a8 100644 --- a/lib/interface/cli/commands/monitor/uninstall.cmd.js +++ b/lib/interface/cli/commands/monitor/uninstall.cmd.js @@ -64,7 +64,7 @@ const unInstallAgentCmd = new Command({ logFormatting: DefaultLogFormatter, }); if (exitCode === 0) { - console.log('Monitor uninsalled successfully'); + console.log('Monitor uninstalled successfully'); if (!noExit) { process.exit(0); } diff --git a/package.json b/package.json index 6f64dc146..b0fb46317 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "codefresh", - "version": "0.68.7", + "version": "0.68.8", "description": "Codefresh command line utility", "main": "index.js", "preferGlobal": true,