Skip to content

Commit

Permalink
Make module-extensions true by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Micket committed Apr 4, 2024
1 parent 5dac63e commit f1a5776
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion easybuild/tools/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,6 @@ def mk_full_default_path(name, prefix=DEFAULT_PREFIX):
'install_latest_eb_release',
'logtostdout',
'minimal_toolchains',
'module_extensions',
'module_only',
'package',
'parallel_extensions_install',
Expand Down Expand Up @@ -325,6 +324,7 @@ def mk_full_default_path(name, prefix=DEFAULT_PREFIX):
'lib64_fallback_sanity_check',
'lib64_lib_symlink',
'map_toolchains',
'module_extensions',
'modules_tool_version_check',
'mpi_tests',
'pre_create_installdir',
Expand Down
2 changes: 1 addition & 1 deletion easybuild/tools/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ def config_options(self):
"(implies recursive unloading of modules).",
None, 'store_true', False),
'module-extensions': ("Include 'extensions' statement in generated module file (Lua syntax only)",
None, 'store_true', False),
None, 'store_true', True),
'module-naming-scheme': ("Module naming scheme to use", None, 'store', DEFAULT_MNS),
'module-syntax': ("Syntax to be used for module files", 'choice', 'store', DEFAULT_MODULE_SYNTAX,
sorted(avail_module_generators().keys())),
Expand Down

0 comments on commit f1a5776

Please sign in to comment.