From 07b0fcf3b683caa2846b19fec3765c23195f10e3 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 12 Sep 2025 10:45:09 -0500 Subject: [PATCH] experiment with restricting writing to these --- config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.go b/config.go index 7118b7c..b2f6210 100644 --- a/config.go +++ b/config.go @@ -23,8 +23,8 @@ func (f *Forge) ConfigSave() error { } // only let forge save the config files (?) - if prep.AppName() == "forge" { - log.Info("Okay, this is forge") + if prep.AppName() == "forge" || prep.AppName() == "guireleaser" { + log.Info("Okay, this is", prep.AppName()) } else { log.Info("This is not forge") return log.Errorf("Only forge can save the config files")