Commit 3d95b52
authored
Quote the arguments to pip (#209)
This fixes quoting in the pip arguments. Otherwise:
```
.venv-pyodide/bin/pip install 'pkg; sys_platform != "emscripten"'
```
will fail because the quotes are removed and it is interpretered as a
request to install packages named pkg, sys_platform, !=, and emscripten.
This fixes another regression introduced in #185.1 parent 4ece0b3 commit 3d95b52
2 files changed
+7
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
8 | 14 | | |
9 | 15 | | |
10 | 16 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
252 | 252 | | |
253 | 253 | | |
254 | 254 | | |
255 | | - | |
| 255 | + | |
256 | 256 | | |
257 | 257 | | |
258 | 258 | | |
| |||
0 commit comments