From 3c6d23836cde247074ccc9248d6b1be120ca5a84 Mon Sep 17 00:00:00 2001 From: Bryan Oltman Date: Fri, 31 Jan 2025 11:51:59 -0500 Subject: [PATCH] fix: make _maybeSetChannelInShorebirdYaml static (#2827) --- packages/shorebird_cli/lib/src/commands/preview_command.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/shorebird_cli/lib/src/commands/preview_command.dart b/packages/shorebird_cli/lib/src/commands/preview_command.dart index 60ce7e40..46ca5c16 100644 --- a/packages/shorebird_cli/lib/src/commands/preview_command.dart +++ b/packages/shorebird_cli/lib/src/commands/preview_command.dart @@ -1027,7 +1027,7 @@ This is only applicable when previewing Android releases.''', /// Sets the channel property in the shorebird.yaml file if none is set or /// different from the provided channel. - Future _maybeSetChannelInShorebirdYaml({ + static Future _maybeSetChannelInShorebirdYaml({ required String channel, required File shorebirdYamlFile, }) async {