From b451f2cf7c79eb56e41bebdb3453451c09a5a065 Mon Sep 17 00:00:00 2001 From: Pavel Sviderski Date: Thu, 6 Feb 2025 13:56:56 +1000 Subject: [PATCH] fix: install_cli.sh install command --- scripts/install_cli.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install_cli.sh b/scripts/install_cli.sh index f094d71b..5bcbb194 100755 --- a/scripts/install_cli.sh +++ b/scripts/install_cli.sh @@ -96,7 +96,7 @@ if [ -z "${SUDO}" ]; then else echo "Installing uncloud binary to ${INSTALL_DIR} using sudo. You may be prompted for your password." fi -if ! $SUDO install "${BINARY_NAME%.tar.gz}" "${INSTALL_DIR}/uncloud"; then +if ! $SUDO install ./uncloud "${INSTALL_DIR}/uncloud"; then echo "Failed to install uncloud binary to ${INSTALL_DIR}" print_manual_install exit 1