Codebase list aptly / 2a9473e7-fc35-476e-bbe1-66d11452f964/main main.go
2a9473e7-fc35-476e-bbe1-66d11452f964/main

Tree @2a9473e7-fc35-476e-bbe1-66d11452f964/main (Download .tar.gz)

main.go @2a9473e7-fc35-476e-bbe1-66d11452f964/mainraw · history · blame

package main

import (
	"math/rand"
	"os"
	"time"

	"github.com/aptly-dev/aptly/aptly"
	"github.com/aptly-dev/aptly/cmd"
)

// Version variable, filled in at link time
var Version string

func main() {
	if Version == "" {
		Version = "unknown"
	}

	aptly.Version = Version

	rand.Seed(time.Now().UnixNano())

	os.Exit(cmd.Run(cmd.RootCommand(), os.Args[1:], true))
}