:78 Function create_function() is deprecated [8192]

changing exit --> return to avoid killing the terminal on an error exit msg

Marcelo Ponce [2019-08-24 20:38:55]
changing exit --> return to avoid killing the terminal on an error exit msg
Filename
core/countReads.sh
diff --git a/core/countReads.sh b/core/countReads.sh
index 159a222..cd9ca61 100755
--- a/core/countReads.sh
+++ b/core/countReads.sh
@@ -87,7 +87,7 @@ if [[ -f $scriptsDIR/auxs/auxFns.sh ]]; then
         . $scriptsDIR/auxs/auxFns.sh --source-only;
 else
         echo "Error auxiliary file: " $scriptsDIR/auxs/auxFns.sh "NOT found!"
-        exit
+        return
 fi
 #######################################################
ViewGit