mirror of https://github.com/aptly-dev/aptly
25 lines
359 B
Go
25 lines
359 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/aptly-dev/aptly/aptly"
|
|
"github.com/aptly-dev/aptly/cmd"
|
|
|
|
_ "embed"
|
|
)
|
|
|
|
//go:generate sh -c "make -s version | tr -d '\n' > VERSION"
|
|
//go:embed VERSION
|
|
var Version string
|
|
|
|
func main() {
|
|
if Version == "" {
|
|
Version = "unknown"
|
|
}
|
|
|
|
aptly.Version = Version
|
|
|
|
os.Exit(cmd.Run(cmd.RootCommand(), os.Args[1:], true))
|
|
}
|