From 907ef86ef283ae057b7d82dcfed85c2a9262cbce Mon Sep 17 00:00:00 2001 From: Moshe Levi Date: Sat, 4 Apr 2020 22:25:41 +0300 Subject: [PATCH] modules: fix use go mod PR https://github.com/Mellanox/sriovnet/pull/27 add go modules but the module name is incorrect it should be https://github.com/Mellanox/sriovnet --- go.mod | 3 +-- go.sum | 2 -- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/go.mod b/go.mod index cf892aa..02cb1cd 100644 --- a/go.mod +++ b/go.mod @@ -1,9 +1,8 @@ -module github/Mellanox/sriovnet +module github.com/Mellanox/sriovnet go 1.13 require ( - github.com/Mellanox/sriovnet v0.0.0-20191103093832-a16b5a5bd280 github.com/google/uuid v1.1.1 github.com/spf13/afero v1.2.2 github.com/stretchr/testify v1.5.1 diff --git a/go.sum b/go.sum index 184b621..70e4e49 100644 --- a/go.sum +++ b/go.sum @@ -1,5 +1,3 @@ -github.com/Mellanox/sriovnet v0.0.0-20191103093832-a16b5a5bd280 h1:PG0aplv4gs0NdGrvPa2IXKkfVW7tABREfehXMhdvzN0= -github.com/Mellanox/sriovnet v0.0.0-20191103093832-a16b5a5bd280/go.mod h1:P1tDPkhPZuCRhSaQ2dt1qNwPq7u80nerosqr0hTJ+hc= github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/google/uuid v1.1.1 h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY=