From aa080d0ed9a2120415bf80a8575c0a378934185b Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Mon, 13 Sep 2021 19:14:41 -0400 Subject: [PATCH] Provide hint for -P (#815) --- pkg/runner/run_context.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/runner/run_context.go b/pkg/runner/run_context.go index 79e7d91..203664c 100755 --- a/pkg/runner/run_context.go +++ b/pkg/runner/run_context.go @@ -352,7 +352,7 @@ func (rc *RunContext) isEnabled(ctx context.Context) bool { for _, runnerLabel := range job.RunsOn() { platformName := rc.ExprEval.Interpolate(runnerLabel) - l.Infof("\U0001F6A7 Skipping unsupported platform '%+v'", platformName) + l.Infof("\U0001F6A7 Skipping unsupported platform -- Try running with `-P %+v=...`", platformName) } return false }