| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent fb26fa1 commit f31c880
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -813,11 +813,11 @@ | |||
| 813 | 813 | default=None, | |
| 814 | 814 | help='do not install the bundled npm (package manager)') | |
| 815 | 815 | ||
| 816 | - parser.add_argument('--without-corepack', | ||
| 816 | + parser.add_argument('--with-corepack', | ||
| 817 | 817 | action='store_true', | |
| 818 | - dest='without_corepack', | ||
| 818 | + dest='with_corepack', | ||
| 819 | 819 | default=None, | |
| 820 | - help='do not install the bundled Corepack') | ||
| 820 | + help='do install the bundled Corepack (experimental, will be removed without notice)') | ||
| 821 | 821 | ||
| 822 | 822 | parser.add_argument('--control-flow-guard', | |
| 823 | 823 | action='store_true', | |
@@ -1448,7 +1448,7 @@ def configure_node(o): | |||
| 1448 | 1448 | o['variables']['OS'] = 'android' | |
| 1449 | 1449 | o['variables']['node_prefix'] = options.prefix | |
| 1450 | 1450 | o['variables']['node_install_npm'] = b(not options.without_npm) | |
| 1451 | - o['variables']['node_install_corepack'] = b(not options.without_corepack) | ||
| 1451 | + o['variables']['node_install_corepack'] = b(options.with_corepack) | ||
| 1452 | 1452 | o['variables']['control_flow_guard'] = b(options.enable_cfg) | |
| 1453 | 1453 | o['variables']['node_use_amaro'] = b(not options.without_amaro) | |
| 1454 | 1454 | o['variables']['debug_node'] = b(options.debug_node) | |
| Back | FazBrowse Home | New Git URL |
0 commit comments