Skip to content

Commit

Permalink
Merge pull request #3490 from boegel/20241016140823_new_pr_rpackage
Browse files Browse the repository at this point in the history
use `*DESCRIPTION` rather than `*/DESCRIPTION` in `RPackage.requires_deps`
  • Loading branch information
Micket authored Oct 17, 2024
2 parents 70ff5bf + 085149b commit eeda121
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion easybuild/easyblocks/generic/rpackage.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ def required_deps(self):

if self._required_deps is None:
if self.src:
cmd = "tar --wildcards --extract --file %s --to-stdout '*/DESCRIPTION'" % self.src
cmd = "tar --wildcards --extract --file %s --to-stdout '*DESCRIPTION'" % self.src
res = run_shell_cmd(cmd, hidden=True)

# lines that start with whitespace are merged with line above
Expand Down

0 comments on commit eeda121

Please sign in to comment.