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,