Commit 2eb6273
src: allows escaping NODE_OPTIONS with backslashes
The characters specified within NODE_OPTIONS can now be escaped, which
is handy especially in conjunction with `--require` (where the file path
might happen to contain spaces that shouldn't cause the option to be
split into two).
Fixes: #12971
PR-URL: #24065
Backport-PR-URL: #35342
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Refs: microsoft/vscode-js-debug#7691 parent 3564424 commit 2eb6273Copy full SHA for 2eb6273
File tree
Expand file treeCollapse file tree
4 files changed
+51
-12
lines changedOpen diff view settings
Filter options
- doc/api
- src
- test
- fixtures
- parallel
Expand file treeCollapse file tree
4 files changed
+51
-12
lines changedOpen diff view settings
Collapse file
+7Lines changed: 7 additions & 0 deletions
- Display the source diff
- Display the rich diff
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
642 | 642 | |
643 | 643 | |
644 | 644 | |
| 645 | + |
| 646 | + |
| 647 | + |
| 648 | + |
| 649 | + |
| 650 | + |
| 651 | + |
645 | 652 | |
646 | 653 | |
647 | 654 | |
|
Collapse file
+38-12Lines changed: 38 additions & 12 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
2610 | 2610 | |
2611 | 2611 | |
2612 | 2612 | |
| 2613 | + |
2613 | 2614 | |
2614 | 2615 | |
2615 | 2616 | |
2616 | 2617 | |
2617 | 2618 | |
2618 | | - |
2619 | | - |
2620 | | - |
2621 | | - |
2622 | | - |
2623 | | - |
2624 | | - |
2625 | | - |
2626 | | - |
2627 | | - |
2628 | | - |
2629 | | - |
| 2619 | + |
| 2620 | + |
| 2621 | + |
| 2622 | + |
| 2623 | + |
| 2624 | + |
| 2625 | + |
| 2626 | + |
| 2627 | + |
| 2628 | + |
| 2629 | + |
| 2630 | + |
| 2631 | + |
| 2632 | + |
| 2633 | + |
| 2634 | + |
| 2635 | + |
| 2636 | + |
| 2637 | + |
| 2638 | + |
| 2639 | + |
| 2640 | + |
| 2641 | + |
| 2642 | + |
| 2643 | + |
| 2644 | + |
| 2645 | + |
| 2646 | + |
| 2647 | + |
| 2648 | + |
| 2649 | + |
| 2650 | + |
| 2651 | + |
| 2652 | + |
| 2653 | + |
| 2654 | + |
| 2655 | + |
2630 | 2656 | |
2631 | 2657 | |
2632 | 2658 | |
|
Collapse file
test/fixtures/print A.js
Copy file name to clipboard+1Lines changed: 1 addition & 0 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
| 1 | + |
Collapse file
test/parallel/test-cli-node-options.js
Copy file name to clipboardExpand all lines: test/parallel/test-cli-node-options.js+5Lines changed: 5 additions & 0 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
15 | 15 | |
16 | 16 | |
17 | 17 | |
| 18 | + |
| 19 | + |
| 20 | + |
18 | 21 | |
| 22 | + |
| 23 | + |
19 | 24 | |
20 | 25 | |
21 | 26 | |
|
0 commit comments