From 8996597f9aee7cdb073c0a850c8566e5d6f467cc Mon Sep 17 00:00:00 2001 From: Orestis <orestis.malaspinas@pm.me> Date: Thu, 29 Feb 2024 16:18:06 +0100 Subject: [PATCH] removed -i --- installer.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installer.sh b/installer.sh index 2833235..0ad51c6 100644 --- a/installer.sh +++ b/installer.sh @@ -161,12 +161,12 @@ download_installer() { linux_install() { command chmod +x "$installer" || die "Failed to chmod +x $installer" - command mv -i "$installer" "$dest" || die "Failed to move $installer" + command mv "$installer" "$dest" || die "Failed to move $installer" } macos_install() { command chmod +x "$installer" || die "Failed to chmod +x $installer for MacOS" - command mv -i "$installer" "$dest" || die "Failed to move $installer to $dest for MacOS" + command mv "$installer" "$dest" || die "Failed to move $installer to $dest for MacOS" } main() { -- GitLab