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 d3781b6 commit 2bddab2Copy full SHA for 2bddab2
test/easyconfigs/easyconfigs.py
@@ -514,10 +514,11 @@ def check_sha256_checksums(self, changed_ecs):
514
# for easyconfigs using the Bundle easyblock, this is a problem because the 'sources' easyconfig parameter
515
# is updated in place (sources for components are added the 'parent' sources) in Bundle's __init__;
516
# therefore, we need to reset 'sources' to an empty list here if Bundle is used...
517
- # likewise for 'checksums'
+ # likewise for 'patches' and 'checksums'
518
for ec in changed_ecs:
519
if ec['easyblock'] == 'Bundle':
520
ec['sources'] = []
521
+ ec['patches'] = []
522
ec['checksums'] = []
523
524
# filter out deprecated easyconfigs
0 commit comments