Skip to content

Commit ab86099

Browse files
authored
Merge pull request #440 from bedroge/find_grace_target
Follow-up PR/fix for #438, exclude `nvidia` targets in other find command
2 parents acdc0c7 + 3b5ada2 commit ab86099

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/available_software/available_software.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ def targets_eessi() -> np.ndarray:
209209

210210
commands = [
211211
f"find {EESSI_TOPDIR}/software/linux/*/* -maxdepth 0 \\( ! -name 'intel' -a ! "
212-
"-name 'amd' \\) -type d",
212+
"-name 'amd' -a ! -name 'nvidia' \\) -type d",
213213
f'find {EESSI_TOPDIR}/software/linux/*/{{amd,intel,nvidia}}/* -maxdepth 0 -type d'
214214
]
215215
targets = np.array([])

0 commit comments

Comments
 (0)