Allow start scripts to have command-line flags

This commit is contained in:
oobabooga 2023-09-22 10:03:56 -07:00
parent 8ab3eca9ec
commit 3314b7d795
7 changed files with 8 additions and 8 deletions

View file

@ -5,7 +5,7 @@ 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"
call wsl -e bash -lic "sed -i 's/\x0D$//' ./wsl.sh; source ./wsl.sh $@"
:end
pause