Skip to content
Snippets Groups Projects
Verified Commit 8996597f authored by orestis.malaspin's avatar orestis.malaspin
Browse files

removed -i

parent 8614d9fb
No related branches found
No related tags found
No related merge requests found
......@@ -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() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment