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

removed -i

parent 8614d9fb
Branches
No related tags found
No related merge requests found
...@@ -161,12 +161,12 @@ download_installer() { ...@@ -161,12 +161,12 @@ download_installer() {
linux_install() { linux_install() {
command chmod +x "$installer" || die "Failed to chmod +x $installer" 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() { macos_install() {
command chmod +x "$installer" || die "Failed to chmod +x $installer for MacOS" 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() { main() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment