mirror of
https://github.com/alexandrev/xslt-lab.git
synced 2026-09-14 09:03:15 +00:00
fix parameter quoting
This commit is contained in:
+1
-1
@@ -181,7 +181,7 @@ func main() {
|
||||
"-o:" + outputPath,
|
||||
}
|
||||
for k, v := range req.Parameters {
|
||||
cmdArgs = append(cmdArgs, k+"='"+v+"'")
|
||||
cmdArgs = append(cmdArgs, k+"="+v)
|
||||
}
|
||||
|
||||
cmd := exec.Command("java", cmdArgs...)
|
||||
|
||||
Reference in New Issue
Block a user