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.
1 parent b82579d commit 4832d2dCopy full SHA for 4832d2d
easybuild/tools/filetools.py
@@ -758,9 +758,9 @@ def find_easyconfigs(path, ignore_dirs=None):
758
return files
759
760
761
-def find_glob_pattern(self, glob_pattern, fail_on_no_match=True):
+def find_glob_pattern(glob_pattern, fail_on_no_match=True):
762
"""Find unique file/dir matching glob_pattern (raises error if more than one match is found)"""
763
- if self.dry_run:
+ if build_option('extended_dry_run'):
764
return glob_pattern
765
res = glob.glob(glob_pattern)
766
if len(res) == 0 and not fail_on_no_match:
0 commit comments