diff options
| author | Jeff Carr <[email protected]> | 2024-02-14 13:44:24 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-02-14 13:44:24 -0600 |
| commit | 096150d8dada21d26d20e4c2282f03c10deb8933 (patch) | |
| tree | b599639ab521f5685aefbdf5484ba089df77a648 | |
| parent | cae327e1629306a0d18515387c6f541f92c772a7 (diff) | |
this needs to exist for the guireleaser to functionv0.20.5
| -rw-r--r-- | Makefile | 3 | ||||
| -rw-r--r-- | main.go | 6 |
2 files changed, 7 insertions, 2 deletions
@@ -1,5 +1,4 @@ -all: build - reset +all: ./guireleaser stderr: build @@ -53,6 +53,12 @@ func main() { os.Exit(0) } + gosum := filepath.Join(homeDir, "go/src/go.wit.com/apps/guireleaser/go.sum") + if ! shell.Exists(gosum) { + log.Info("go.sum must exist here") + os.Exit(0) + } + repoworld() me.releaseReasonS = releaseReasonS |
