Răsfoiți Sursa

Merge pull request #5634 from torzech/proper-threads-regex

Enhanced regular expression for THREADS parameter
Niklas Meyer 1 an în urmă
părinte
comite
aadeeb0df3
1 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  1. 2 2
      helper-scripts/backup_and_restore.sh

+ 2 - 2
helper-scripts/backup_and_restore.sh

@@ -55,10 +55,10 @@ ENV_FILE=${SCRIPT_DIR}/../.env
 THREADS=$(echo ${THREADS:-1})
 ARCH=$(uname -m)
 
-if ! [[ "${THREADS}" =~ ^[1-9]+$ ]] ; then
+if ! [[ "${THREADS}" =~ ^[1-9][0-9]?$ ]] ; then
   echo "Thread input is not a number!"
   exit 1
-elif [[ "${THREADS}" =~ ^[1-9]+$ ]] ; then
+elif [[ "${THREADS}" =~ ^[1-9][0-9]?$ ]] ; then
   echo "Using ${THREADS} Thread(s) for this run."
   echo "Notice: You can set the Thread count with the THREADS Variable before you run this script."
 fi