Merge pull request #236 from harshavardhana/undefined

ErrNotSupportedPlatform is undefined define it
This commit is contained in:
Michael Crosby 2014-10-24 11:40:36 -07:00
commit 60471bdc7d
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)