Skip to content

Commit

Permalink
Replace prebuild duration message emoji
Browse files Browse the repository at this point in the history
  • Loading branch information
gtsiolis authored and roboquat committed Dec 15, 2022
1 parent d97e720 commit f41eb43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/supervisor/pkg/supervisor/tasks.go
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ func (tm *tasksManager) watch(task *task, term *terminal.Term) {
duration := ""
if elapsed >= 1*time.Minute {
elapsedInMinutes := strconv.Itoa(int(math.Round(elapsed.Minutes())))
duration = "🎉 Well done on saving " + elapsedInMinutes + " minute"
duration = "⏱️ Well done on saving " + elapsedInMinutes + " minute"
if elapsedInMinutes != "1" {
duration += "s"
}
Expand Down Expand Up @@ -539,7 +539,7 @@ func importParentLogAndGetDuration(fn string, out io.Writer) time.Duration {
if !scanner.Scan() {
return 0
}
reg, err := regexp.Compile(`🎉 Well done on saving (\d+) minute`)
reg, err := regexp.Compile(`⏱️ Well done on saving (\d+) minute`)
if err != nil {
return 0
}
Expand Down

0 comments on commit f41eb43

Please sign in to comment.