Merge pull request #33 from gman0/cephfs-import-fix

cephfs/main: updated import path
This commit is contained in:
Huamin Chen 2018-04-24 08:30:38 -04:00 committed by GitHub
commit c8fb63e77f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 3 deletions

View File

@ -16,8 +16,10 @@ script:
- test -z $(gofmt -s -l $GO_FILES) - test -z $(gofmt -s -l $GO_FILES)
- go vet -v $(go list ./... | grep -v /vendor/) - go vet -v $(go list ./... | grep -v /vendor/)
- make rbdplugin - make rbdplugin
- make cephfsplugin
deploy: deploy:
- provider: script - provider: script
script: script:
- ./deploy.sh - ./deploy-rbd.sh
- ./deploy-cephfs.sh

View File

@ -21,8 +21,7 @@ import (
"os" "os"
"path" "path"
// "github.com/ceph/ceph-csi/pkg/cephfs" "github.com/ceph/ceph-csi/pkg/cephfs"
"github.com/gman0/ceph-csi/pkg/cephfs"
"github.com/golang/glog" "github.com/golang/glog"
) )