We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9b8b8c commit 71fd0d7Copy full SHA for 71fd0d7
modules/nextflow/src/main/groovy/nextflow/cli/CmdRun.groovy
@@ -455,7 +455,8 @@ class CmdRun extends CmdBase implements HubOptions {
455
fmt.a("$BACKGROUND N E X T F L O W ").reset()
456
457
// Show Nextflow version
458
- fmt.a(Attribute.INTENSITY_FAINT).a(" ~ ").reset().a("version " + BuildInfo.version).reset()
+ final versionUrl = "https://github.com/nextflow-io/nextflow/releases/tag/v${BuildInfo.version}"
459
+ fmt.a(Attribute.INTENSITY_FAINT).a(" ~ ").reset().a(hyperlink("version " + BuildInfo.version, versionUrl)).reset()
460
fmt.a("\n")
461
AnsiConsole.out.println(fmt.eraseLine())
462
}
0 commit comments