We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 410c745 commit b70d646Copy full SHA for b70d646
modules/nf-commons/src/main/nextflow/BuildInfo.groovy
@@ -74,8 +74,8 @@ class BuildInfo {
74
return ''
75
}
76
77
- final utc = getTimestampUTC().split(' ')
78
- final loc = getTimestampLocal().split(' ')
+ final utc = getTimestampUTC().tokenize(' ')
+ final loc = getTimestampLocal().tokenize(' ')
79
80
final result = utc[0] == loc[0] ? loc[1,-1].join(' ') : loc.join(' ')
81
return "($result)"
0 commit comments