We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
make_module_pythonpath
1 parent faf549b commit beeceedCopy full SHA for beeceed
easybuild/framework/easyblock.py
@@ -1429,9 +1429,9 @@ def make_module_pythonpath(self):
1429
1430
if use_ebpythonprefixes:
1431
path = '' # EBPYTHONPREFIXES are relative to the install dir
1432
- lines = self.module_generator.prepend_paths(EBPYTHONPREFIXES, path)
+ lines = self.module_generator.prepend_paths(EBPYTHONPREFIXES, path, warn_exists=False)
1433
else:
1434
- lines = self.module_generator.prepend_paths(PYTHONPATH, python_paths)
+ lines = self.module_generator.prepend_paths(PYTHONPATH, python_paths, warn_exists=False)
1435
return [lines] if lines else []
1436
1437
def make_module_extra(self, altroot=None, altversion=None):
0 commit comments