aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/clean_drivers.bat
blob: aaae9ad124195c6d42a2c32ef8849d4abd7eeb16 (plain) (blame)
1
2
3
4
5
6
7
8
@setlocal enabledelayedexpansion
@echo off

for /f "delims=" %%i in ('dir /s sources /b') do (
  set driver_src_root=%%~dpi
  echo.
  call clean_driver.bat "!driver_src_root:~0,-1!" || exit /b !errorlevel!
)