File tree 1 file changed +3
-3
lines changed
components/supervisor/pkg/supervisor
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -498,7 +498,7 @@ func (tm *tasksManager) watch(task *task, term *terminal.Term) {
498
498
duration := ""
499
499
if elapsed >= 1 * time .Minute {
500
500
elapsedInMinutes := strconv .Itoa (int (math .Round (elapsed .Minutes ())))
501
- duration = "⏱️ Well done on saving " + elapsedInMinutes + " minute"
501
+ duration = "⏱ Well done on saving " + elapsedInMinutes + " minute"
502
502
if elapsedInMinutes != "1" {
503
503
duration += "s"
504
504
}
@@ -526,7 +526,7 @@ func importParentLogAndGetDuration(fn string, out io.Writer) time.Duration {
526
526
}
527
527
defer file .Close ()
528
528
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 " ))
530
530
531
531
scanner := bufio .NewScanner (file )
532
532
for scanner .Scan () {
@@ -539,7 +539,7 @@ func importParentLogAndGetDuration(fn string, out io.Writer) time.Duration {
539
539
if ! scanner .Scan () {
540
540
return 0
541
541
}
542
- reg , err := regexp .Compile (`⏱️ Well done on saving (\d+) minute` )
542
+ reg , err := regexp .Compile (`⏱ Well done on saving (\d+) minute` )
543
543
if err != nil {
544
544
return 0
545
545
}
You can’t perform that action at this time.
0 commit comments