From 54a423b0d503d1dba6cd2449ebff7ad9339b3e60 Mon Sep 17 00:00:00 2001 From: Carl Roman Hultay <144816337+crhultay@users.noreply.github.com> Date: Fri, 29 Nov 2024 07:03:44 -0500 Subject: [PATCH 1/2] Fix oputil cat help page colour flag reference --- core/oputil/oputil_help.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/oputil/oputil_help.js b/core/oputil/oputil_help.js index 14bf9de12..0d0313daa 100644 --- a/core/oputil/oputil_help.js +++ b/core/oputil/oputil_help.js @@ -102,7 +102,7 @@ Actions: cat Write current configuration to stdout cat arguments: - --no-color Disable color + --no-colors Disable color --no-comments Strip any comments `, FileBase: `usage: oputil.js fb [] From 375674fbdf02fc10bfd8afd704b7e8284968fb68 Mon Sep 17 00:00:00 2001 From: Carl Roman Hultay <144816337+crhultay@users.noreply.github.com> Date: Fri, 29 Nov 2024 07:04:59 -0500 Subject: [PATCH 2/2] Update oputil_config.js --- core/oputil/oputil_config.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/core/oputil/oputil_config.js b/core/oputil/oputil_config.js index d979f9b77..b14321c1a 100644 --- a/core/oputil/oputil_config.js +++ b/core/oputil/oputil_config.js @@ -297,6 +297,14 @@ function catCurrentConfig() { keepWsc: false === argv.comments ? false : true, }); + if (argv.meow) { + console.info( +` /\\_/\\ + ( o.o ) + > ^ < ... mrow...`); + return; + } + console.log(hjson.stringify(config, hjsonOpts)); } catch (e) { if ('ENOENT' == e.code) {