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 093766b commit 4e674b7Copy full SHA for 4e674b7
core/src/main/groovy/noe/server/IIS.groovy
@@ -137,9 +137,9 @@ class IIS extends ServerAbstract {
137
}
138
139
// remove last ","
140
- propertiesString = propertiesString.substring(0, propertiesString.length() - 2)
+ String props = propertiesString.substring(0, propertiesString.length() - 2).toString()
141
142
- return executeAppcmd("set config /section:${section} /${op}\"[${propertiesString}]\"")
+ return executeAppcmd("set config /section:${section} /${op}\"[${props}]\"")
143
144
145
/**
0 commit comments