0
0

Merge pull request #340 from MachineShop-IOT/master

Fix masking of error when creating index (minor error reporting fix)
This commit is contained in:
Marty Schoch 2016-02-18 12:09:23 -05:00
commit 1af0568036
2 changed files with 6 additions and 1 deletions

2
.gitignore vendored
View File

@ -4,6 +4,8 @@
.#*
.project
.settings
**/.idea/
**/*.iml
.DS_Store
/analysis/token_filters/cld2/cld2-read-only
/analysis/token_filters/cld2/libcld2_full.a

View File

@ -58,7 +58,10 @@ func (i *indexMeta) Save(path string) (err error) {
// ensure any necessary parent directories exist
err = os.Mkdir(path, 0700)
if err != nil {
return ErrorIndexPathExists
if os.IsExist(err) {
return ErrorIndexPathExists
}
return err
}
metaBytes, err := json.Marshal(i)
if err != nil {