Skip to content

Commit

Permalink
update get-dependencies to pull updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jhmgoossens committed Jan 29, 2024
1 parent a263195 commit 59c498c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions get-dependencies.bat
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ for /f "eol=# tokens=1,2,3" %%i in (%depfile%) do (
git -C ..\%%i fetch --all
git -C ..\%%i checkout %%k
if errorlevel 1 pause
git -C ..\%%i status | find /i "HEAD detached"
if errorlevel 1 (
echo INFO: Not at detached head, so try to pull changes.
git -C ..\%%i pull
if errorlevel 1 pause
)
)
echo INFO: Finished with ..\%%i
)

0 comments on commit 59c498c

Please sign in to comment.