Skip to content
Snippets Groups Projects
Commit 0e991c92 authored by Kamil Trzcinski's avatar Kamil Trzcinski
Browse files

Improve welcome message (GitLab Runner version)

parent 9a7e660a
No related branches found
No related tags found
No related merge requests found
...@@ -344,7 +344,10 @@ func (b *Build) Run(globalConfig *Config, trace JobTrace) (err error) { ...@@ -344,7 +344,10 @@ func (b *Build) Run(globalConfig *Config, trace JobTrace) (err error) {
var executor Executor var executor Executor
logger := NewBuildLogger(trace, b.Log()) logger := NewBuildLogger(trace, b.Log())
logger.Println(fmt.Sprintf("Running with %s\n on %s (%s)", AppVersion.Line(), b.Runner.Name, b.Runner.ShortDescription())) logger.Println("Running with", AppVersion.Line())
if b.Runner.ShortDescription() != "" {
logger.Println(" on", b.Runner.Name, b.Runner.ShortDescription())
}
b.CurrentState = BuildRunStatePending b.CurrentState = BuildRunStatePending
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment