lint: Don't check for WSL2 host path on non-Linux OSes

This commit is contained in:
OatmealDome 2022-08-15 16:13:18 -04:00
parent b6a18b0da5
commit a25c835d00
1 changed files with 4 additions and 2 deletions

View File

@ -7,8 +7,10 @@ set -euo pipefail
# use Windows' git when working under path mounted from host on wsl2
# inspired by https://markentier.tech/posts/2020/10/faster-git-under-wsl2/#solution
GIT=git
if [ "$(stat --file-system --format=%T `pwd -P`)" == "v9fs" ]; then
if [ "$(uname -s)" == "Linux" ]; then
if [ "$(stat --file-system --format=%T `pwd -P`)" == "v9fs" ]; then
GIT=git.exe
fi
fi
if ! [ -x "$(command -v $GIT)" ]; then