From a55c344519b08b0186511bf70c26c3e0e741150a Mon Sep 17 00:00:00 2001 From: Sylvester Joosten <sylvester.joosten@gmail.com> Date: Fri, 21 May 2021 00:31:33 -0400 Subject: [PATCH] better log messages --- install.sh | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index cb46b612a..b6696f9d0 100755 --- a/install.sh +++ b/install.sh @@ -3,6 +3,8 @@ CONTAINER="jug_xl" VERSION="3.0-stable" +echo "Setting up development environment for eicweb/$CONTAINER:$VERSION" + ## Simple setup script that installs the container ## in your local environment under $PWD/local/lib ## and creates a simple top-level launcher script @@ -28,7 +30,7 @@ else exit 1 fi fi -echo "Found singularity at $SINGULARITY" +echo " - Found singularity at $SINGULARITY" SIF= ## check if we can just use cvmfs for the image @@ -52,7 +54,7 @@ fi if [ -z $SIF -o ! -f $SIF ]; then echo "ERROR: no singularity image found" else - echo "Using ${CONTAINER} image: $SIF" + echo " - Deployed ${CONTAINER} image: $SIF" fi ## create a new top-level eic-shell launcher script @@ -64,4 +66,6 @@ $SINGULARITY run $SIF EOF chmod +x eic-shell -echo "Created custom eic-shell excecutable" +echo " - Created custom eic-shell excecutable" +echo "Environment setup succesfull" +echo "You can start the development environment by running './eic-shell'" -- GitLab