From 07b63e4750438deef3fc0bd2aa10a5eda1d12026 Mon Sep 17 00:00:00 2001 From: Roman Gardukevich Date: Tue, 16 May 2023 14:20:12 +0300 Subject: [PATCH] Rename install function in the install.sh Fix the ambiguity of `install` shell command and `install` script function --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index e3793aa0b..82dc12065 100755 --- a/install.sh +++ b/install.sh @@ -16,7 +16,7 @@ function error { } # Use a function to ensure connection errors don't partially execute when being piped -function install { +function install_cli { echo "Starting installation." @@ -78,4 +78,4 @@ function install { rm -r "$SCRATCH" } -install +install_cli