Browse Source

Adding missing check for software/src directory in installLabkey.sh

Andrej Studen 2 years ago
parent
commit
2062ddc1fb
1 changed files with 6 additions and 0 deletions
  1. 6 0
      bin/installLabkey.sh

+ 6 - 0
bin/installLabkey.sh

@@ -25,6 +25,11 @@ SFW_SRC=$HOME/software/packages/$LABKEY.tar.gz
 LABKEY_BASE=$HOME/labkey
 SFW_DIR=$HOME/software/src
 
+if [ ! -d ${SFW_DIR} ] ; 
+then
+	mkdir ${SFW_DIR};
+fi;
+
 if [ ! -d $LABKEY_BASE ] ; 
 then
 	mkdir $LABKEY_BASE;
@@ -33,6 +38,7 @@ fi;
 CFG_DIR=$HOME/config
 LABKEY_DIR=$SFW_DIR/$LABKEY;
 
+
 LINK_DIRS=("tomcat-lib" "labkeywebapp" "modules" "pipeline-lib")
 
 if [ ! -d ${LABKEY_DIR} ] ; then