Logo and version bump

This commit is contained in:
Denis Zheleztsov 2017-09-04 13:40:30 +03:00
parent 5a29b42802
commit 20bd1d55e2
3 changed files with 4 additions and 2 deletions

View File

@ -2,6 +2,8 @@
[![Build Status](https://travis-ci.org/Difrex/rbmd.svg?branch=master)](https://travis-ci.org/Difrex/rbmd)
![logo](/img/logo.png)
RBD mount wrapper cluster
**ALLOW FOR STAGING**

View File

@ -188,7 +188,7 @@ func (r RBDDevice) MapDevice() ([]byte, error) {
o := stdout.String()
if strings.HasSuffix(o, "\n") {
o = o[:len(o)-1]
o = o[:len(o)-2]
}
return []byte(o), nil

View File

@ -8,6 +8,6 @@ import (
//VersionShow show version and exit
func VersionShow() {
fmt.Println("RBMD 0.1", runtime.Version(), runtime.GOARCH)
fmt.Println("RBMD 0.2 test", runtime.Version(), runtime.GOARCH)
os.Exit(1)
}