Skip to content

Commit e362275

Browse files
committed
Fix bad file copying
1 parent 2c9b0e2 commit e362275

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

eng/dump.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ mkdir ".\dumps\DriverStore" 2>nul
1616
for /D %%G in ("C:\Windows\System32\DriverStore\FileRepository\*") DO (
1717
mkdir ".\dumps\DriverStore\%%~nxG" 2>nul
1818
for /F %%H in ("%%~G\*.inf") DO (
19-
xcopy /Q /Y "%%H" .\dumps\DriverStore\%%~nxG > nul
19+
xcopy /Q /Y "%%~H" ".\dumps\DriverStore\%%~nxG" >nul
2020
<nul set /p "=Dumped '%%~nxH' !CR!"
2121
)
2222
)

0 commit comments

Comments
 (0)