Set a proper version number

This commit is contained in:
Thomas Boerger 2016-08-23 22:46:57 +02:00
parent 46897fbdf4
commit de3352fe18
No known key found for this signature in database
GPG Key ID: 5A388F55283960B6
1 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,7 @@
package main
import (
"fmt"
"os"
"github.com/Sirupsen/logrus"
@ -8,14 +9,14 @@ import (
"github.com/urfave/cli"
)
var version string // build number set at compile-time
var build = "0" // build number set at compile-time
func main() {
app := cli.NewApp()
app.Name = "s3 sync plugin"
app.Usage = "s3 sync plugin"
app.Action = run
app.Version = version
app.Version = fmt.Sprintf("1.0.%s", build)
app.Flags = []cli.Flag{
cli.StringFlag{
Name: "access-key",