From 3d48bc09957a8c715d24f027194cf00bd506e46e Mon Sep 17 00:00:00 2001 From: Philipp Winter Date: Tue, 16 Jun 2026 12:30:23 -0500 Subject: [PATCH] Fix incorrect use of `fmt.Println`. I just noticed the following in a `fly launch` run: failed setting FLY_API_TOKEN secret in GitHub repository settings: %w exit status 1 This PR replaces `fmt.Println` with `fmt.Printf` to have that error displayed correctly. --- internal/command/launch/launch_frameworks.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/command/launch/launch_frameworks.go b/internal/command/launch/launch_frameworks.go index dd02693f55..70d2613c62 100644 --- a/internal/command/launch/launch_frameworks.go +++ b/internal/command/launch/launch_frameworks.go @@ -75,7 +75,7 @@ func (state *launchState) setupGitHubActions(ctx context.Context, appName string err = cmd.Run() if err != nil { - fmt.Println("failed setting FLY_API_TOKEN secret in GitHub repository settings: %w", err) + fmt.Printf("failed setting FLY_API_TOKEN secret in GitHub repository settings: %s\n", err) } } }