blob: 544b7a03a6df71120593815325503a582f7f1281 (
plain) (
tree)
|
|
@rem Copyright 2015 Egor Tensin <Egor.Tensin@gmail.com>
@rem This file is licensed under the terms of the MIT License.
@rem See LICENSE.txt for details.
@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!
)
|