Skip to content
This repository was archived by the owner on Nov 27, 2023. It is now read-only.

Commit eb0c44c

Browse files
committed
chore: handle BUILDKIT_PROGRESS to disable hints
the same way we check --progress flag, if it exists, disable Signed-off-by: Yves Brissaud <[email protected]>
1 parent 9a34334 commit eb0c44c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Diff for: cli/mobycli/scout_suggest.go

+3
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ func displayScoutQuickViewSuggestMsgOnBuild(args []string) {
3838
utils.StringContains(args, "--push") {
3939
return
4040
}
41+
if _, ok := os.LookupEnv("BUILDKIT_PROGRESS"); ok {
42+
return
43+
}
4144
displayScoutQuickViewSuggestMsg("")
4245
}
4346

0 commit comments

Comments
 (0)