fix(justfile): Fix uninstall of launcher_dir

This commit is contained in:
a-kenji 2022-05-10 16:02:24 +02:00 committed by Michael Murphy
parent 0893990653
commit 582bdc58ac

View file

@ -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
fi