mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-05-27 19:12:57 +00:00
11 lines
148 B
Bash
11 lines
148 B
Bash
#!/bin/bash
|
|
set -e
|
|
set -u
|
|
|
|
function __pass() {
|
|
echo "WSL (Windows Subsystem for Linux) can only be installed from Windows"
|
|
exit 0
|
|
}
|
|
|
|
__pass
|