needed to bypass go-deb problems

This commit is contained in:
Jeff Carr 2025-02-14 20:43:47 -06:00
parent c09e292a66
commit 5c84b9ab66
1 changed files with 3 additions and 0 deletions

View File

@ -58,6 +58,9 @@ func (f *Forge) doBuild(repo *gitpb.Repo, userFlags []string, goWhat string) err
data, _ := repo.ReadFile(".forge")
log.Info(".forge =", string(data))
log.Info("todo: do the custom build instructions")
basedir, filename := filepath.Split(repo.GetGoPath())
log.Info("touching filename", basedir, filename)
repo.RunVerbose([]string{"touch", filename})
return nil
}