Delphi-OpenCV/InitDelphiFFMPEG.cmd
Laentir Valetov e60343d2d9 Delphi 11 Alexandria
Signed-off-by: Laentir Valetov <laex@bk.ru>
2022-02-10 15:26:22 +04:00

28 lines
509 B
Batchfile

@echo off
rem Get the submodule initially
@git submodule update --init
@git submodule update
rem Time passes, submodule upstream is updated
rem and you now want to update
echo Update Delphi-FFMPEG
rem Change to the submodule directory
cd Delphi-FFMPEG
rem Checkout desired branch
git checkout master
rem Get back to your project root
cd ..
echo JEDI
rem Change to the submodule directory
cd jedi
rem Checkout desired branch
git checkout master
rem Update
git pull
rem Get back to your project root
cd ..