10 lines
216 B
Batchfile
10 lines
216 B
Batchfile
@echo off
|
|
chcp 65001 >nul
|
|
cd /d "%~dp0"
|
|
powershell -ExecutionPolicy Bypass -File "%~dp0start_docker_wsl.ps1"
|
|
if errorlevel 1 (
|
|
echo.
|
|
echo [ERROR] start_docker_wsl.ps1 failed.
|
|
pause
|
|
exit /b %errorlevel%
|
|
) |