diff --git a/installer.sh b/installer.sh index 283323566864571922a7a28f4201e6e8a6bb55a0..0ad51c676c5abdb478cb7f7ccaad528074385520 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() {