mirror of
https://github.com/schollz/croc.git
synced 2024-11-28 01:16:10 +03:00
19 lines
343 B
Go
19 lines
343 B
Go
package main
|
|
|
|
//go:generate git tag -af v$VERSION -m "v$VERSION"
|
|
//go:generate go run src/install/updateversion.go
|
|
//go:generate git commit -am "bump $VERSION"
|
|
//go:generate git tag -af v$VERSION -m "v$VERSION"
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/schollz/croc/v6/src/cli"
|
|
)
|
|
|
|
func main() {
|
|
if err := cli.Run(); err != nil {
|
|
fmt.Println(err)
|
|
}
|
|
}
|