From b163db4adfd8fb45819eaa019f18b5561c1c2f5e Mon Sep 17 00:00:00 2001 From: Drew Bednar Date: Sun, 22 Jun 2025 14:42:09 -0400 Subject: [PATCH] Correcting templating and root command --- .gitea/template | 2 +- cmd/root.go | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.gitea/template b/.gitea/template index d2128fd..38f15bf 100644 --- a/.gitea/template +++ b/.gitea/template @@ -1,7 +1,7 @@ # This file tells Gitea to process variable substitution in the following files. go.mod README.md -cmd/${REPO_NAME}/root.go +cmd/root.go main.go Makefile changelog diff --git a/cmd/root.go b/cmd/root.go index cedf8b0..c226e88 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -2,8 +2,6 @@ package cmd import ( "fmt" - "os" - "github.com/spf13/cobra" )