Skip to content
Snippets Groups Projects
Commit a55c3445 authored by Sylvester Joosten's avatar Sylvester Joosten
Browse files

better log messages

parent a256a1a4
No related branches found
No related tags found
1 merge request!55better log messages
...@@ -3,6 +3,8 @@ ...@@ -3,6 +3,8 @@
CONTAINER="jug_xl" CONTAINER="jug_xl"
VERSION="3.0-stable" VERSION="3.0-stable"
echo "Setting up development environment for eicweb/$CONTAINER:$VERSION"
## Simple setup script that installs the container ## Simple setup script that installs the container
## in your local environment under $PWD/local/lib ## in your local environment under $PWD/local/lib
## and creates a simple top-level launcher script ## and creates a simple top-level launcher script
...@@ -28,7 +30,7 @@ else ...@@ -28,7 +30,7 @@ else
exit 1 exit 1
fi fi
fi fi
echo "Found singularity at $SINGULARITY" echo " - Found singularity at $SINGULARITY"
SIF= SIF=
## check if we can just use cvmfs for the image ## check if we can just use cvmfs for the image
...@@ -52,7 +54,7 @@ fi ...@@ -52,7 +54,7 @@ fi
if [ -z $SIF -o ! -f $SIF ]; then if [ -z $SIF -o ! -f $SIF ]; then
echo "ERROR: no singularity image found" echo "ERROR: no singularity image found"
else else
echo "Using ${CONTAINER} image: $SIF" echo " - Deployed ${CONTAINER} image: $SIF"
fi fi
## create a new top-level eic-shell launcher script ## create a new top-level eic-shell launcher script
...@@ -64,4 +66,6 @@ $SINGULARITY run $SIF ...@@ -64,4 +66,6 @@ $SINGULARITY run $SIF
EOF EOF
chmod +x eic-shell 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'"
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