1
0
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:
2025-07-04 20:51:57 +02:00
parent f261abea1f
commit ba91c1453c
+1 -1
View File
@@ -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...)