From b2c293a83ee321a2b1e764f51f65940a429ba349 Mon Sep 17 00:00:00 2001 From: Ilya Caramishev Date: Wed, 3 Apr 2024 10:07:49 +0300 Subject: [PATCH] Fixing the build --- internal/commands/fastedge/fastedge.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/commands/fastedge/fastedge.go b/internal/commands/fastedge/fastedge.go index 5cb7667..63ac638 100644 --- a/internal/commands/fastedge/fastedge.go +++ b/internal/commands/fastedge/fastedge.go @@ -54,7 +54,7 @@ func Commands(baseUrl string, authFunc func(ctx context.Context, req *http.Reque cmdFastedge.PersistentFlags().BoolVar(&local, "local", false, "local testing") cmdFastedge.PersistentFlags().MarkHidden("local") - cmdFastedge.AddCommand(app(), binary(), stat(), logs(), test()) + cmdFastedge.AddCommand(app(), binary(), stat(), logs()) return cmdFastedge, nil }