feat: Add post-exec reporting support (#134)

* feat: Add post install reporting support

* fix: UI report handling

* fix: Duplicate reporting

* fix: Show warning on insecure bypass

* fix: Proxy event log insecure skip installation

* fix: Proxy event log insecure skip installation

* fix: Common definition for infer outcome
This commit is contained in:
Abhisek Datta
2026-01-27 17:50:26 +05:30
committed by GitHub
parent 0aa82033a5
commit 36ac3e3384
14 changed files with 1022 additions and 66 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ func StartSpinnerWithColor(msg string, c ColorFn) {
ticker.Stop()
return
case <-ticker.C:
fmt.Printf("\r%s ... %s", c(msg), string(frames[pos%length]))
fmt.Printf("\r%s ... %s", c("PMG: "+msg), string(frames[pos%length]))
pos += 1
}
}