Add version stuff on root

Former-commit-id: 4dcf3117e274fe2b656af6fd2ee98db386143620 [formerly df3bd216ef1020e9ca6a0ba57ef1c4bad5a6e04d] [formerly e5eded7248098655cd60112a6ec5fec06fd99ff2 [formerly 044575d2af]]
Former-commit-id: 8fe1a523af24c490eef9d7cd2b1bc3de656002de [formerly 73aea3062fa487a5c6c89f8f04bd86c177c783f3]
Former-commit-id: 6fd9e5260feacfe6b9d96515a7c3ab28c31f17db
This commit is contained in:
Henrique Dias 2017-09-03 10:41:14 +01:00
parent 7ad727d27d
commit 2515819026
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!"