Skip to content

Commit 582bdc5

Browse files
a-kenjimmstick
authored andcommitted
fix(justfile): Fix uninstall of launcher_dir
1 parent 0893990 commit 582bdc5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

justfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@ install_scripts:
7474

7575
# Uninstalls everything (requires same arguments as given to install)
7676
uninstall:
77-
rm {{bin_path}} {{launcher_dir}}
77+
rm {{bin_path}}
78+
rm -rf {{launcher_dir}}
7879

7980
# Vendor Cargo dependencies locally
8081
vendor:
@@ -93,4 +94,4 @@ _extract_vendor:
9394
if test {{vendor}} = 1; then
9495
rm -rf vendor
9596
tar pxf vendor.tar
96-
fi
97+
fi

0 commit comments

Comments
 (0)