small fix

This commit is contained in:
edwardro22
2017-08-17 15:36:27 +03:00
parent 88e11ac295
commit 1acb51769a
2 changed files with 5 additions and 4 deletions

View File

@@ -14,4 +14,4 @@ cm=$?
go install -ldflags "-X 'github.com/cgrates/cgrates/utils.GitLastLog=$GIT_LAST_LOG'" github.com/cgrates/cgrates/cmd/cgr-tester
ct=$?
exit $cr || $cl || $cc || $cm ||$ct
exit $cr || $cl || $cc || $cm || $ct

View File

@@ -23,8 +23,9 @@ import (
"github.com/cgrates/cgrates/utils"
)
var(
version = flag.Bool("version", false, "Prints the application version.")
var (
version = flag.Bool("version", false, "Prints the application version.")
)
func main() {
@@ -33,4 +34,4 @@ func main() {
fmt.Println(utils.GetCGRVersion())
return
}
}
}