From f7c717ffa8559c3ab3293f67d22f2baf83ae1c99 Mon Sep 17 00:00:00 2001 From: Kevin Cotugno Date: Tue, 6 Oct 2020 09:29:38 -0700 Subject: [PATCH] Fix import grep test --- .zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index 9e09c4b..7baded1 100644 --- a/.zshrc +++ b/.zshrc @@ -60,7 +60,7 @@ else export EDITOR="vi" fi -if [[ $(command -v uname) && !$(uname -r | grep -iq microsoft-standard) ]]; then source "$HOME/.wsl.zsh"; fi +if [[ $(command -v uname) ]] && uname -r | grep -iq microsoft-standard; then source "$HOME/.wsl.zsh"; fi if [[ -f "$HOME/work.zsh" ]]; then source "$HOME/work.zsh"