Skip to content
Snippets Groups Projects
Commit 95ae7e28 authored by Matthew McGill's avatar Matthew McGill
Browse files

Added recursive clone check

Former-commit-id: c15ea788
parent c30c8b95
No related branches found
No related tags found
No related merge requests found
...@@ -29,6 +29,11 @@ mkdir -p $ZEST_RUNTIME/lib64 ...@@ -29,6 +29,11 @@ mkdir -p $ZEST_RUNTIME/lib64
mkdir -p $ZEST_RUNTIME/bin mkdir -p $ZEST_RUNTIME/bin
mkdir -p $ZEST_RUNTIME/sbin mkdir -p $ZEST_RUNTIME/sbin
if [ "$(ls -A "$PEDI_HOME" 2> /dev/null)" == "" ]; then
echo "pedi submodule is empty. Did you clone using --recursive?";
exit 1;
fi
if [ ! -f manifest.txt.config -o ! -d "$PS_INSTALL" ]; then if [ ! -f manifest.txt.config -o ! -d "$PS_INSTALL" ]; then
mkdir -p "$PS_INSTALL" mkdir -p "$PS_INSTALL"
$PEDI_HOME/pedi --setup -m manifest.txt -l ida -l ida_key -l ps -l zipr -l stars -i $PS_INSTALL $PEDI_HOME/pedi --setup -m manifest.txt -l ida -l ida_key -l ps -l zipr -l stars -i $PS_INSTALL
......
...@@ -10,6 +10,11 @@ if [ "$PEASOUP_UMBRELLA_DIR" != "$FULL_BUILD_LOC" ]; then ...@@ -10,6 +10,11 @@ if [ "$PEASOUP_UMBRELLA_DIR" != "$FULL_BUILD_LOC" ]; then
exit 1; exit 1;
fi fi
if [ "$(ls -A "$PEDI_HOME" 2> /dev/null)" == "" ]; then
echo "pedi submodule is empty. Did you clone using --recursive?";
exit 1;
fi
use_strata=0 use_strata=0
if [[ $use_strata = 1 ]] ; then if [[ $use_strata = 1 ]] ; then
# stratafier # stratafier
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment