Installer for WSL (#78)

This commit is contained in:
jllllll 2023-06-12 22:04:15 -05:00 committed by GitHub
parent 53496ffa80
commit c42f183d3f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 200 additions and 3 deletions

11
start_wsl.bat Normal file
View file

@ -0,0 +1,11 @@
@echo off
cd /D "%~dp0"
set PATH=%PATH%;%SystemRoot%\system32
@rem sed -i 's/\x0D$//' ./wsl.sh converts newlines to unix format in the wsl script
call wsl -e bash -lic "sed -i 's/\x0D$//' ./wsl.sh; source ./wsl.sh"
:end
pause