Commit c0fde48
committed
🤖 fix: quote $s variable when passing to bash -c
Without quotes, PowerShell expands $s and bash only receives the first
word as the -c argument. The rest becomes positional args to bash.
Use escaped double quotes (\`"$s\`") so the entire decoded script
is passed as a single argument to bash -c.1 parent dcc7f77 commit c0fde48
1 file changed
+5
-4
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
395 | 395 | | |
396 | 396 | | |
397 | 397 | | |
398 | | - | |
| 398 | + | |
399 | 399 | | |
400 | | - | |
401 | | - | |
| 400 | + | |
| 401 | + | |
| 402 | + | |
402 | 403 | | |
403 | 404 | | |
404 | | - | |
| 405 | + | |
405 | 406 | | |
406 | 407 | | |
407 | 408 | | |
| |||
0 commit comments