Pre-process special characters in REPLACE_ENV_VARIABLES

#718
This commit is contained in:
Geoff Bourne 2021-02-25 19:07:16 -06:00
parent e5e97a3560
commit 9299f00d20

View file

@ -34,6 +34,10 @@ if isTrue "${REPLACE_ENV_VARIABLES}"; then
fi
log "Replacing $name with $value ..."
value=${value//\\/\\\\}
value=${value//#/\\#}
find /data/ \
$dirExcludes \
-type f \