diff --git a/scripts/install.sh b/scripts/install.sh index 084b8ac9..8d1a0e6d 100644 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -33,6 +33,14 @@ case "$ARCH" in *) error "Unsupported architecture: $ARCH" ;; esac +KERN=$(uname -r) +case "$KERN" in + *icrosoft*WSL2 | *icrosoft*wsl2) ;; + *icrosoft) error "Microsoft WSL1 is not currently supported. Please upgrade to WSL2 with 'wsl --set-version 2'" ;; + *) ;; +esac + + SUDO= if [ "$(id -u)" -ne 0 ]; then # Running as root, no need for sudo