diff options
| -rw-r--r-- | build.go | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 } |
