From 582bdc58ace9dfe46303ecde2fc2bb958aa3101b Mon Sep 17 00:00:00 2001 From: a-kenji Date: Tue, 10 May 2022 16:02:24 +0200 Subject: [PATCH] fix(justfile): Fix uninstall of `launcher_dir` --- justfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index 623e08b..9aab837 100644 --- a/justfile +++ b/justfile @@ -74,7 +74,8 @@ install_scripts: # Uninstalls everything (requires same arguments as given to install) uninstall: - rm {{bin_path}} {{launcher_dir}} + rm {{bin_path}} + rm -rf {{launcher_dir}} # Vendor Cargo dependencies locally vendor: @@ -93,4 +94,4 @@ _extract_vendor: if test {{vendor}} = 1; then rm -rf vendor tar pxf vendor.tar - fi \ No newline at end of file + fi