Compare commits

...

3 Commits

Author SHA1 Message Date
abs3nt 8cf145955c
docs: version bump
ci/woodpecker/push/woodpecker Pipeline was successful Details
ci/woodpecker/tag/woodpecker Pipeline was successful Details
2023-03-11 21:35:03 -08:00
abs3nt 62c1714958
updates
ci/woodpecker/push/woodpecker Pipeline was successful Details
ci/woodpecker/tag/woodpecker Pipeline was successful Details
2023-03-10 09:59:19 -08:00
abs3nt 49effe24b4
update urls 2023-03-09 23:48:25 -08:00
3 changed files with 6 additions and 11 deletions

View File

@ -1,6 +1,6 @@
gitea_urls:
api: https://gitea.asdf.cafe/api/v1
download: https://gitea.asdf.cafe
api: https://git.asdf.cafe/api/v1
download: https://git.asdf.cafe
skip_tls_verify: false
before:

View File

@ -65,6 +65,7 @@ Possible flags are:
-t, --test Enable go test
-v, --vet Enable go vet
### Remove Command
Remove a project by its name

View File

@ -7,19 +7,13 @@ import (
"github.com/spf13/cobra"
)
var Version = "v0.2.8"
var Version = "v0.2.11"
// versionCmd represents the version command
var versionCmd = &cobra.Command{
Use: "version",
Short: "A brief description of your command",
Long: `A longer description that spans multiple lines and likely contains examples
and usage of using your command. For example:
Cobra is a CLI library for Go that empowers applications.
This application is a tool to generate the needed files
to quickly create a Cobra application.`,
Run: version,
Short: "Prints current verison",
Run: version,
}
func init() {