ErrNotSupportedPlatform is undefined define it

Signed-off-by: Harshavardhana <fharshav@redhat.com>
This commit is contained in:
Harshavardhana 2014-10-24 01:19:17 -07:00
parent aab3f6d17f
commit 768ae3990c
1 changed files with 8 additions and 0 deletions

8
xattr/errors.go Normal file
View File

@ -0,0 +1,8 @@
package xattr
import (
"fmt"
"runtime"
)
var ErrNotSupportedPlatform = fmt.Errorf("platform and architecture is not supported %s %s", runtime.GOOS, runtime.GOARCH)