Files
linux-workspace/rc.local/wsl.sh
2024-03-19 06:10:06 +01:00

11 lines
186 B
Bash

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