attempt at v0.19.2
Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
parent
b07ef2498f
commit
8e6a40c4bd
2
main.go
2
main.go
|
@ -36,7 +36,7 @@ func main() {
|
|||
if repo.String() == "go.wit.com/widget" {
|
||||
repo.targetVersion.SetText("v" + "1.1.14")
|
||||
} else {
|
||||
repo.targetVersion.SetText("v" + "0.19.1")
|
||||
repo.targetVersion.SetText("v" + "0.19.2")
|
||||
}
|
||||
}
|
||||
log.Info("Creating the Release Window")
|
||||
|
|
|
@ -60,7 +60,7 @@ func (w *autoType) Enable() {
|
|||
}
|
||||
|
||||
func createReleaseBox(box *gui.Node) {
|
||||
release.reasonS = "gocui dropdown"
|
||||
release.reasonS = "gocui dropdown select"
|
||||
|
||||
initWhitelist()
|
||||
|
||||
|
@ -250,6 +250,12 @@ func createReleaseBox(box *gui.Node) {
|
|||
srcDir := filepath.Join(homeDir, "go/src")
|
||||
me.goSrcPwd.SetText(srcDir)
|
||||
|
||||
testf := filepath.Join(srcDir, "go.wit.com/apps/guireleaser", "go.sum")
|
||||
if ! Exists(testf) {
|
||||
log.Info("go.sum missing", testf)
|
||||
panic("redo go.sum")
|
||||
}
|
||||
|
||||
release.grid.NewButton("Check Ready", func() {
|
||||
buttonDisable()
|
||||
defer buttonEnable()
|
||||
|
|
Loading…
Reference in New Issue