From a841018c7d9bc3836c8994f6036b85691b076377 Mon Sep 17 00:00:00 2001 From: David Rabkin Date: Sun, 7 Jan 2024 20:48:47 +0200 Subject: [PATCH] Fix typo in an error message --- app/gento | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/gento b/app/gento index a21ef69..e979707 100755 --- a/app/gento +++ b/app/gento @@ -1,6 +1,6 @@ #!/bin/sh # vi:et lbr noet sw=2 ts=2 tw=79 wrap -# Copyright 2023 David Rabkin +# Copyright 2023-2024 David Rabkin # Uses Unix shell framework shellbase: # https://github.com/rdavid/shellbase # shellcheck disable=SC2039,SC3043 # Uses local variables. @@ -20,7 +20,7 @@ BASE_APP_USAGE="$( } readonly \ BASE_APP_USAGE \ - BASE_APP_VERSION=0.9.20231212 \ + BASE_APP_VERSION=0.9.20240107 \ BASE_MIN_VERSION=0.9.20230606 . base.sh @@ -510,7 +510,7 @@ validate_env() { # Makes sure the cluster is available. Uses the output only in case of an # error. local out - out="$(oc get nodes 2>&1)" || die Unable to connect to cluster: "$out". + out="$(oc get nodes 2>&1)" || die Unable to connect to cluster: "$out" is_cnf_running }