diff options
Diffstat (limited to 'aai-resources/src/main/scripts/bulkprocess.sh')
-rw-r--r-- | aai-resources/src/main/scripts/bulkprocess.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/aai-resources/src/main/scripts/bulkprocess.sh b/aai-resources/src/main/scripts/bulkprocess.sh index 5611bf7..c4bca27 100644 --- a/aai-resources/src/main/scripts/bulkprocess.sh +++ b/aai-resources/src/main/scripts/bulkprocess.sh @@ -43,10 +43,10 @@ if [ -z "$2" ]; then exit 1 fi -[[ "$XFROMAPPID" =~ [a-zA-Z0-9][a-zA-Z0-9]*-[a-zA-Z0-9][a-zA-Z0-9]* ]] || { - echo "XFROMAPPID doesn't match the following regex [a-zA-Z0-9][a-zA-Z0-9]*-[a-zA-Z0-9][a-zA-Z0-9]*"; - exit 1; -} +case "${XFROMAPPID}" in + [a-zA-Z0-9][a-zA-Z0-9]*-[a-zA-Z0-9][a-zA-Z0-9]*) ;; + *) echo "XFROMAPPID doesn't match the following regex [a-zA-Z0-9][a-zA-Z0-9]*-[a-zA-Z0-9][a-zA-Z0-9]*"; exit 1; ;; +esac XTRANSID=$3 |