From b3919b9d4cca35e4ede5203b7b97b794f0c44d78 Mon Sep 17 00:00:00 2001 From: vetclippy Date: Thu, 4 Sep 2025 15:12:30 +0800 Subject: [PATCH] chore: fix typos for shell Signed-off-by: vetclippy --- install-cli.sh | 2 +- install-injector.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/install-cli.sh b/install-cli.sh index 84f74a71c0..d9c4c1b72a 100755 --- a/install-cli.sh +++ b/install-cli.sh @@ -116,7 +116,7 @@ initOS # assemble expected release artifact name if [ "${OS}" != "linux" ] && { [ "${ARCH}" = "ppc64" ] || [ "${ARCH}" = "ppc64le" ];}; then # ppc64 and ppc64le are only supported on Linux. - echo "${OS}-${ARCH} is not supported by this instalation script" + echo "${OS}-${ARCH} is not supported by this installation script" else BINARY="ioctl-${OS}-${ARCH}" fi diff --git a/install-injector.sh b/install-injector.sh index 2bad7639a8..9aa647a630 100755 --- a/install-injector.sh +++ b/install-injector.sh @@ -108,7 +108,7 @@ INSTALL_NAME="injector" # assemble expected release artifact name if [ "${OS}" != "linux" ] && { [ "${ARCH}" = "ppc64" ] || [ "${ARCH}" = "ppc64le" ];}; then # ppc64 and ppc64le are only supported on Linux. - echo "${OS}-${ARCH} is not supported by this instalation script" + echo "${OS}-${ARCH} is not supported by this installation script" else BINARY="${INSTALL_NAME}-${OS}-${ARCH}" fi