mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-09-29 20:47:56 +00:00
Doc version tracking with acrn-hypervisor version now to be MAJOR_VERSION . MINOR_VERSION . RC_VERSION Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
26 lines
492 B
Bash
Executable File
26 lines
492 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# pull fresh copies of the ACRN source for use by doxygen
|
|
|
|
if [ ! -d "../acrn-hypervisor" ]; then
|
|
echo Repo for acrn-hypervisor is missing.
|
|
exit -1
|
|
fi
|
|
if [ ! -d "../acrn-devicemodel" ]; then
|
|
echo Repo for acrn-devicemodel is missing.
|
|
exit -1
|
|
fi
|
|
|
|
cd ../acrn-hypervisor
|
|
git checkout master;
|
|
git fetch upstream
|
|
git merge upstream/master
|
|
git push origin master
|
|
|
|
|
|
cd ../acrn-devicemodel
|
|
git checkout master;
|
|
git fetch upstream
|
|
git merge upstream/master
|
|
git push origin master
|