fix(justfile): Fix uninstall of launcher_dir
This commit is contained in:
parent
0893990653
commit
582bdc58ac
1 changed files with 3 additions and 2 deletions
5
justfile
5
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
|
||||
fi
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue