This commit is contained in:
lachtan
2024-03-19 06:09:48 +01:00
parent e6db9f7123
commit 2256cd3107
7 changed files with 34 additions and 31 deletions

View File

@@ -1,3 +1,10 @@
prepend_path_try "$HOME/.local/bin"
append_path_try "$HOME/.arkade/bin"
append_path_try "$HOME/.cargo/bin"
function is_wsl()
{
grep -q -i wsl /proc/version
}
if is_wsl; then
prepend_path_try "$HOME/.local/bin"
append_path_try "$HOME/.arkade/bin"
append_path_try "$HOME/.cargo/bin"
fi