acrn-hypervisor/scripts/pullsource.sh
David B. Kinder 74274634de doc: add Technical intro doc
Add the "Introduction of Project Acorn" doc.

Also adds improvements to the doc generation processes, content styles,
removed doxygen-generated API material.

Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
2018-03-08 16:07:31 -08:00

16 lines
330 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 pull
cd ../acrn-devicemodel;git pull