Commit 73e3705
committed
Fix Windows curl command percent-sign escaping
The Windows curl command was using `%%%%{http_code}` which after
Lua's string.format() became `%%{http_code}`. This worked in cmd.exe
batch files but failed in Git Bash and direct io.popen() execution,
where the double-percent was interpreted literally.
Changed to `%%{http_code}` (same as Unix) since io.popen() executes
commands directly, not through a batch file interpreter.
Closes #11 parent 585555f commit 73e3705
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
145 | 145 | | |
146 | 146 | | |
147 | 147 | | |
148 | | - | |
| 148 | + | |
149 | 149 | | |
150 | 150 | | |
151 | 151 | | |
| |||
0 commit comments