From 329067eeabe126215cef09bf7636883db7f0a2b7 Mon Sep 17 00:00:00 2001 From: Asher Baker Date: Sun, 13 Jan 2019 13:44:53 +0000 Subject: [PATCH] Shell globing is hard --- breakpad.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/breakpad.bat b/breakpad.bat index 716220d..89c8ca7 100644 --- a/breakpad.bat +++ b/breakpad.bat @@ -29,7 +29,7 @@ cmd /c depot_tools\gclient sync --nohooks cd src git config user.name patches git config user.email patches@localhost -git am -3 ..\..\patches\*.patch +powershell -Command "& {git am -3 $(ls ..\..\patches\*.patch | %% {$_.FullName})}" @IF %errorlevel% neq 0 EXIT /b %errorlevel% cd ..