我在 windows7 上使用 grunt (v0.4.5) 和 grunt-shell 来执行 curl 命令。有一些问题。
命令行上的平原curl "dev.machine.com/caches/dependency/clear
工作正常。
grunt-shell 配置部分:
shell: {
resetCaches: {
command: 'curl "dev.machine.net/caches/dependency/clear"',
options: {
stdout: true,
stderr: true,
stdinRawMode: true,
failOnError: false,
execOptions: {
maxBuffer: "Infinite"
}
}
}
}
通过执行相同的命令grunt shell:resetCaches
会破坏一切。
错误信息:
curl: (6) Could not resolve host: dev.machine.net\caches\dependency\clear
不知何故,斜杠变成了反斜杠。但为什么?