From 20cf98d42ec3abbf5ed0743e96e0ba31a05479b5 Mon Sep 17 00:00:00 2001 From: Pasha Sviderski Date: Wed, 24 Sep 2025 20:40:16 +1000 Subject: [PATCH] fix: return an error if 'uc rm' tries to remove a service that doesn't exist --- cmd/uncloud/service/rm.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/uncloud/service/rm.go b/cmd/uncloud/service/rm.go index 500c3744..a76c7bb1 100644 --- a/cmd/uncloud/service/rm.go +++ b/cmd/uncloud/service/rm.go @@ -50,5 +50,5 @@ func rm(ctx context.Context, uncli *cli.CLI, opts rmOptions) error { }, uncli.ProgressOut(), "Removing service "+s) } - return nil + return err }