We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent caad4d4 commit a2be5bdCopy full SHA for a2be5bd
src/main/groovy/org/silverpeas/setup/configuration/VariableReplacement.groovy
@@ -80,7 +80,7 @@ class VariableReplacement {
80
try {
81
if (!varName.startsWith('env') && !varName.startsWith('sys')) {
82
if (varValue != null) {
83
- parsedExpression = expression.replace(token[0], varValue)
+ parsedExpression = parsedExpression.replace(token[0], varValue)
84
} else {
85
println "Error: no such variable ${varName}"
86
throw new StopExecutionException("Error: no such variable ${varName}")
0 commit comments