Change all occurences of '-' in ExecTasks id

This commit is contained in:
deajan 2018-10-13 23:41:13 +02:00
parent 17cf11eb0b
commit c9bc7f4b6c
1 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@
#### OFUNCTIONS MINI SUBSET #### #### OFUNCTIONS MINI SUBSET ####
#### OFUNCTIONS MICRO SUBSET #### #### OFUNCTIONS MICRO SUBSET ####
_OFUNCTIONS_VERSION=2.3.0-RC2 _OFUNCTIONS_VERSION=2.3.0-RC2
_OFUNCTIONS_BUILD=2018101301 _OFUNCTIONS_BUILD=2018101302
#### _OFUNCTIONS_BOOTSTRAP SUBSET #### #### _OFUNCTIONS_BOOTSTRAP SUBSET ####
_OFUNCTIONS_BOOTSTRAP=true _OFUNCTIONS_BOOTSTRAP=true
#### _OFUNCTIONS_BOOTSTRAP SUBSET END #### #### _OFUNCTIONS_BOOTSTRAP SUBSET END ####
@ -888,7 +888,7 @@ function ExecTasks {
fi fi
# Change '-' to '_' in task id # Change '-' to '_' in task id
id="${id/-/_}" id="${id//-/_}"
# Expand validExitCodes into array # Expand validExitCodes into array
IFS=';' read -r -a validExitCodes <<< "$validExitCodes" IFS=';' read -r -a validExitCodes <<< "$validExitCodes"