this needs to exist for the guireleaser to function
This commit is contained in:
parent
cae327e162
commit
096150d8da
3
Makefile
3
Makefile
|
@ -1,5 +1,4 @@
|
||||||
all: build
|
all:
|
||||||
reset
|
|
||||||
./guireleaser
|
./guireleaser
|
||||||
|
|
||||||
stderr: build
|
stderr: build
|
||||||
|
|
6
main.go
6
main.go
|
@ -53,6 +53,12 @@ func main() {
|
||||||
os.Exit(0)
|
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()
|
repoworld()
|
||||||
|
|
||||||
me.releaseReasonS = releaseReasonS
|
me.releaseReasonS = releaseReasonS
|
||||||
|
|
Loading…
Reference in New Issue