Skip to content

Commit

Permalink
update version extraction
Browse files Browse the repository at this point in the history
  • Loading branch information
rannick committed Jan 14, 2025
1 parent e0d8062 commit eabdf7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/nf-core/arriba/download/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ process ARRIBA_DOWNLOAD {
cat <<-END_VERSIONS > versions.yml
"${task.process}":
wget: \$(wget --version | head -1 | sed 's/GNU Wget //' | sed 's/\(.*\) built on darwin.*/\1/')
wget: \$(wget --version | head -1 | sed 's/GNU Wget //' | sed -E 's/(.*) built on darwin.*/\1/')
END_VERSIONS
"""

Expand All @@ -42,7 +42,7 @@ process ARRIBA_DOWNLOAD {
cat <<-END_VERSIONS > versions.yml
"${task.process}":
wget: \$(wget --version | head -1 | sed 's/GNU Wget //' | sed 's/\(.*\) built on darwin.*/\1/')
wget: \$(wget --version | head -1 | sed 's/GNU Wget //' | sed -E 's/(.*) built on darwin.*/\1/')
END_VERSIONS
"""
}

0 comments on commit eabdf7a

Please sign in to comment.