Skip to content

Commit

Permalink
Fix typo in an error message
Browse files Browse the repository at this point in the history
  • Loading branch information
rdavid committed Jan 7, 2024
1 parent c2b9e42 commit a841018
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/gento
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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

Expand Down Expand Up @@ -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
}

Expand Down

0 comments on commit a841018

Please sign in to comment.