Skip to content

Commit 971673f

Browse files
authored
Merge pull request #198 from andyzhangx/rename3
chore: rename driver
2 parents fac14b6 + 95e5492 commit 971673f

23 files changed

+33
-33
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ endif
2727
IMAGE_TAG = $(REGISTRY)/$(IMAGE_NAME):$(IMAGE_VERSION)
2828
IMAGE_TAG_LATEST = $(REGISTRY)/$(IMAGE_NAME):latest
2929
BUILD_DATE ?= $(shell date -u +"%Y-%m-%dT%H:%M:%SZ")
30-
LDFLAGS ?= "-X ${PKG}/pkg/blobfuse.driverVersion=${IMAGE_VERSION} -X ${PKG}/pkg/blobfuse.gitCommit=${GIT_COMMIT} -X ${PKG}/pkg/blobfuse.buildDate=${BUILD_DATE} -s -w -extldflags '-static'"
30+
LDFLAGS ?= "-X ${PKG}/pkg/blob.driverVersion=${IMAGE_VERSION} -X ${PKG}/pkg/blob.gitCommit=${GIT_COMMIT} -X ${PKG}/pkg/blob.buildDate=${BUILD_DATE} -s -w -extldflags '-static'"
3131
GINKGO_FLAGS = -ginkgo.noColor -ginkgo.v
3232
GO111MODULE = off
3333
GOPATH ?= $(shell go env GOPATH)

pkg/blob/azure.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
1414
limitations under the License.
1515
*/
1616

17-
package blobfuse
17+
package blob
1818

1919
import (
2020
"fmt"

pkg/blob/azure_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
1414
limitations under the License.
1515
*/
1616

17-
package blobfuse
17+
package blob
1818

1919
import (
2020
"fmt"

pkg/blob/blobfuse.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
1414
limitations under the License.
1515
*/
1616

17-
package blobfuse
17+
package blob
1818

1919
import (
2020
"fmt"

pkg/blob/blobfuse_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
1414
limitations under the License.
1515
*/
1616

17-
package blobfuse
17+
package blob
1818

1919
import (
2020
"errors"

pkg/blob/controllerserver.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
1414
limitations under the License.
1515
*/
1616

17-
package blobfuse
17+
package blob
1818

1919
import (
2020
"context"

pkg/blob/controllerserver_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
1414
limitations under the License.
1515
*/
1616

17-
package blobfuse
17+
package blob
1818

1919
import (
2020
"context"

pkg/blob/identityserver.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
1414
limitations under the License.
1515
*/
1616

17-
package blobfuse
17+
package blob
1818

1919
import (
2020
"context"

pkg/blob/identityserver_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
1414
limitations under the License.
1515
*/
1616

17-
package blobfuse
17+
package blob
1818

1919
import (
2020
"context"

pkg/blob/nodeserver.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
1414
limitations under the License.
1515
*/
1616

17-
package blobfuse
17+
package blob
1818

1919
import (
2020
"fmt"

0 commit comments

Comments
 (0)