summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-02-14 20:43:47 -0600
committerJeff Carr <[email protected]>2025-02-14 20:43:47 -0600
commit5c84b9ab6642fd3394c83ffc97648750eaa625f7 (patch)
tree70250e89322e5a14832e673ffb3b5c753b1c6200
parentc09e292a66ae7abd7e90aa97f267b6c90b33ca47 (diff)
needed to bypass go-deb problemsv0.0.77
-rw-r--r--build.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/build.go b/build.go
index 893d9ba..58fe7ad 100644
--- a/build.go
+++ b/build.go
@@ -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
}