From 91333aaf1cf03588cd3d4dfcf715623b014a69de Mon Sep 17 00:00:00 2001 From: Eli Schwartz Date: Thu, 1 Jul 2021 15:42:18 -0400 Subject: [PATCH] fix typo in sources for the api binary which broke the build Regression from commit 8a769ecedb1f0748e82d792622b07219a5ac921d. --- api/graph/schema.resolvers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/graph/schema.resolvers.go b/api/graph/schema.resolvers.go index 50cb183..a96e953 100644 --- a/api/graph/schema.resolvers.go +++ b/api/graph/schema.resolvers.go @@ -73,7 +73,7 @@ func (r *mutationResolver) CreateRepository(ctx context.Context, name string, vi name, repoNameRE.String()) } if name == "." || name == ".." { - return nil, fmt.Errorf("Invalid repository name '%s' (must not be . or ..)", name)) + return nil, fmt.Errorf("Invalid repository name '%s' (must not be . or ..)", name) } conf := config.ForContext(ctx) -- 2.38.4