Skip to content

Commit f56e6de

Browse files
gtsiolisjeanp413
authored andcommitted
Update prebuild and incremental prebuild emojis
1 parent 7349d1c commit f56e6de

File tree

1 file changed

+3
-3
lines changed
  • components/supervisor/pkg/supervisor

1 file changed

+3
-3
lines changed

components/supervisor/pkg/supervisor/tasks.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ func (tm *tasksManager) watch(task *task, term *terminal.Term) {
498498
duration := ""
499499
if elapsed >= 1*time.Minute {
500500
elapsedInMinutes := strconv.Itoa(int(math.Round(elapsed.Minutes())))
501-
duration = "⏱ Well done on saving " + elapsedInMinutes + " minute"
501+
duration = "⏱ Well done on saving " + elapsedInMinutes + " minute"
502502
if elapsedInMinutes != "1" {
503503
duration += "s"
504504
}
@@ -526,7 +526,7 @@ func importParentLogAndGetDuration(fn string, out io.Writer) time.Duration {
526526
}
527527
defer file.Close()
528528

529-
defer out.Write([]byte("♻️ Re-running task as an incremental workspace prebuild\r\n\r\n"))
529+
defer out.Write([]byte("📦 Re-running task for incremental prebuild\r\n\r\n"))
530530

531531
scanner := bufio.NewScanner(file)
532532
for scanner.Scan() {
@@ -539,7 +539,7 @@ func importParentLogAndGetDuration(fn string, out io.Writer) time.Duration {
539539
if !scanner.Scan() {
540540
return 0
541541
}
542-
reg, err := regexp.Compile(`⏱ Well done on saving (\d+) minute`)
542+
reg, err := regexp.Compile(`⏱ Well done on saving (\d+) minute`)
543543
if err != nil {
544544
return 0
545545
}

0 commit comments

Comments
 (0)