All checks were successful
continuous-integration/drone/push Build is passing
coop-cloud/organising#236 Autoupdater `kadabra` is ready for testing. It should run on the server, check for available minor/patch updates and automatically upgrade the apps. Co-authored-by: Moritz <moritz.m@local-it.org> Reviewed-on: coop-cloud/abra#268
24 lines
374 B
Go
24 lines
374 B
Go
// Package main provides the command-line entrypoint.
|
|
package main
|
|
|
|
import (
|
|
"coopcloud.tech/abra/cli/updater"
|
|
)
|
|
|
|
// Version is the current version of Abra
|
|
var Version string
|
|
|
|
// Commit is the current git commit of Abra
|
|
var Commit string
|
|
|
|
func main() {
|
|
if Version == "" {
|
|
Version = "dev"
|
|
}
|
|
if Commit == "" {
|
|
Commit = " "
|
|
}
|
|
|
|
updater.RunApp(Version, Commit)
|
|
}
|