2018-06-28 16:38:07 +03:00
|
|
|
package main
|
2019-06-20 17:10:37 +03:00
|
|
|
|
|
|
|
//go:generate git tag -af v$VERSION -m "v$VERSION"
|
2019-05-02 23:14:09 +03:00
|
|
|
//go:generate go run src/install/updateversion.go
|
2019-06-20 17:10:37 +03:00
|
|
|
//go:generate git commit -am "bump $VERSION"
|
|
|
|
//go:generate git tag -af v$VERSION -m "v$VERSION"
|
2018-06-28 16:38:07 +03:00
|
|
|
|
2018-10-17 16:39:02 +03:00
|
|
|
import (
|
2019-04-30 02:09:37 +03:00
|
|
|
"fmt"
|
2018-06-30 19:47:27 +03:00
|
|
|
|
2019-04-30 02:12:04 +03:00
|
|
|
"github.com/schollz/croc/v6/src/cli"
|
2019-04-30 02:09:37 +03:00
|
|
|
)
|
2018-06-30 19:47:27 +03:00
|
|
|
|
2018-09-22 06:51:43 +03:00
|
|
|
func main() {
|
2019-04-30 02:09:37 +03:00
|
|
|
if err := cli.Run(); err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
}
|
2018-09-22 08:25:01 +03:00
|
|
|
}
|