mirror of https://github.com/bjeanes/dotfiles.git
Fix WSL check
Prior to this fix, as implemented it caused a false positive.
parent
70c04afb18
commit
55d7637afb
|
@ -1,4 +1,4 @@
|
|||
if [ -n ${WSL_DISTRO_NAME:-} ] || grep -sqiE 'WSL' /proc/sys/kernel/osrelease; then
|
||||
if [ -n "${WSL_DISTRO_NAME:-}" ] || grep -sqiE 'WSL' /proc/sys/kernel/osrelease; then
|
||||
# # Talk to Windows' SSH-Agent when under WSL, using https://github.com/rupor-github/wsl-ssh-agent
|
||||
# # wsl-ssh-agent started with:
|
||||
# #
|
||||
|
|
Loading…
Reference in New Issue