Skip to content

Commit

Permalink
Minor change [ci skip]
Browse files Browse the repository at this point in the history
Signed-off-by: Paolo Di Tommaso <[email protected]>
  • Loading branch information
pditommaso committed Feb 12, 2024
1 parent 13e631c commit 10049b2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/nextflow/src/main/groovy/nextflow/cli/CmdRun.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,8 @@ class CmdRun extends CmdBase implements HubOptions {
// Use very dark grey, which is more reliable.
// Jansi library bundled in Jline can't do exact RGBs,
// so just do the ANSI codes manually
fmt.a("\033[1m\033[38;5;232m\033[48;5;43m N E X T F L O W ").reset()
final BACKGROUND = "\033[1m\033[38;5;232m\033[48;5;43m"
fmt.a("$BACKGROUND N E X T F L O W ").reset()

// Show Nextflow version
fmt.a(Attribute.INTENSITY_FAINT).a(" ~ ").reset().a("version " + BuildInfo.version).reset()
Expand Down

0 comments on commit 10049b2

Please sign in to comment.