Skip to content
Snippets Groups Projects
Commit c1ebc886 authored by Jason Hiser's avatar Jason Hiser :tractor:
Browse files

Merge branch 'recursive_clone_check' into 'master'

Added recursive clone check

See merge request allnp/peasoup_umbrella!4
parents 7854c691 c15ea788
No related branches found
No related tags found
1 merge request!4Added recursive clone check
Pipeline #1530 passed
......@@ -29,6 +29,11 @@ mkdir -p $ZEST_RUNTIME/lib64
mkdir -p $ZEST_RUNTIME/bin
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
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
......
......@@ -10,6 +10,11 @@ if [ "$PEASOUP_UMBRELLA_DIR" != "$FULL_BUILD_LOC" ]; then
exit 1;
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
if [[ $use_strata = 1 ]] ; then
# 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