Skip to content

Commit

Permalink
fix: when download path got removed, it should use -f to force delete…
Browse files Browse the repository at this point in the history
… the download files (#1746)

Co-authored-by: Trevor Brown <[email protected]>
  • Loading branch information
kamontat and Stratus3D authored Dec 17, 2024
1 parent d462b55 commit 221507f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/functions/installs.bash
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ install_tool_version() {
fi
# Otherwise, remove the download directory if it exists
elif [ -d "$download_path" ]; then
rm -r "$download_path"
rm -rf "$download_path"
fi

reshim_command "$plugin_name" "$full_version"
Expand Down

0 comments on commit 221507f

Please sign in to comment.