Add version stuff on root

This commit is contained in:
Henrique Dias 2017-09-03 10:41:14 +01:00
parent 96a5226076
commit 044575d2af
No known key found for this signature in database
GPG Key ID: 936F5EB68D786730
3 changed files with 28 additions and 10 deletions

View File

@ -41,7 +41,6 @@ var (
allowNew bool
allowPublish bool
showVer bool
version = "master"
)
func init() {
@ -102,15 +101,7 @@ func setupViper() {
}
func printVersion() {
version = strings.TrimSpace(version)
if version == "" {
fmt.Println("filemanager is at an untracked version")
} else {
version = strings.TrimPrefix(version, "v")
fmt.Println("filemanager version", version)
}
fmt.Println("filemanager version", filemanager.Version)
os.Exit(0)
}

View File

@ -20,6 +20,9 @@ import (
"github.com/robfig/cron"
)
// Version is the current File Manager version.
const Version = "(untracked version)"
var (
ErrExist = errors.New("the resource already exists")
ErrNotExist = errors.New("the resource does not exist")

24
publish.sh Normal file
View File

@ -0,0 +1,24 @@
#!/bin/bash
echo "Releasing version $1"
sed -i "s|(untracked version)|$1|g" filemanager.go
echo "Building assets"
./build.sh
echo "Commiting..."
git add -A
git commit -m "Version $1"
git push
echo "Creating the tag..."
git tag "v$1"
git push --tags
echo "Commiting untracked version notice..."
sed -i "s|$1|(untracked version)|g" filemanager.go
git add -A
git commit -m "untracked version `date`"
git push
echo "Done!"