From 0f7330a377d8108a0ece0c9069c0c2ba087dbb18 Mon Sep 17 00:00:00 2001 From: Carl Hultay <144816337+crhultay@users.noreply.github.com> Date: Fri, 22 Nov 2024 22:13:09 -0500 Subject: [PATCH] Update oputil_main.js --- core/oputil/oputil_main.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/oputil/oputil_main.js b/core/oputil/oputil_main.js index 9dcbc510..9b79ad3d 100644 --- a/core/oputil/oputil_main.js +++ b/core/oputil/oputil_main.js @@ -10,6 +10,7 @@ const handleFileBaseCommand = require('./oputil_file_base.js').handleFileBaseCom const handleMessageBaseCommand = require('./oputil_message_base.js').handleMessageBaseCommand; const handleConfigCommand = require('./oputil_config.js').handleConfigCommand; +const handleSSHKeyCommand = require('./oputil_ssh_key.js').handleSSHKeyCommand; const getHelpFor = require('./oputil_help.js').getHelpFor; module.exports = function () { @@ -32,6 +33,8 @@ module.exports = function () { return handleFileBaseCommand(); case 'mb': return handleMessageBaseCommand(); + case 'ssh': + return handleSSHKeyCommand(); default: return printUsageAndSetExitCode(getHelpFor('General'), ExitCodes.BAD_COMMAND); }