mirror of
https://gitea.com/gitea/tea
synced 2024-10-31 21:20:23 +00:00
2653eaa6b2
remove version info in same way it is done on gitea Add Changelog for v0.3.0 Co-authored-by: 6543 <6543@obermui.de> Reviewed-on: https://gitea.com/gitea/tea/pulls/122 Reviewed-by: mrsdizzie <info@mrsdizzie.com> Reviewed-by: Andrew Thornton <art27@cantab.net>
61 lines
1.2 KiB
Go
61 lines
1.2 KiB
Go
// Copyright 2018 The Gitea Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// Tea is command line tool for Gitea.
|
|
package main // import "code.gitea.io/tea"
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
"strings"
|
|
|
|
"code.gitea.io/tea/cmd"
|
|
"code.gitea.io/tea/modules/setting"
|
|
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
// Version holds the current tea version
|
|
var Version = "development"
|
|
|
|
// Tags holds the build tags used
|
|
var Tags = ""
|
|
|
|
func init() {
|
|
setting.AppVer = Version
|
|
setting.AppBuiltWith = formatBuiltWith(Tags)
|
|
}
|
|
|
|
func main() {
|
|
app := cli.NewApp()
|
|
app.Name = "tea"
|
|
app.Usage = "Command line tool to interact with Gitea"
|
|
app.Description = ``
|
|
app.Version = Version + formatBuiltWith(Tags)
|
|
app.Commands = []*cli.Command{
|
|
&cmd.CmdLogin,
|
|
&cmd.CmdLogout,
|
|
&cmd.CmdIssues,
|
|
&cmd.CmdPulls,
|
|
&cmd.CmdReleases,
|
|
&cmd.CmdRepos,
|
|
&cmd.CmdLabels,
|
|
&cmd.CmdTrackedTimes,
|
|
&cmd.CmdOpen,
|
|
}
|
|
app.EnableBashCompletion = true
|
|
err := app.Run(os.Args)
|
|
if err != nil {
|
|
log.Fatalf("Failed to run app with %s: %v", os.Args, err)
|
|
}
|
|
}
|
|
|
|
func formatBuiltWith(Tags string) string {
|
|
if len(Tags) == 0 {
|
|
return ""
|
|
}
|
|
|
|
return " built with: " + strings.Replace(Tags, " ", ", ", -1)
|
|
}
|