Skip to content

Commit d03f6e0

Browse files
authored
Merge pull request #2 from liggitt/rename-imports
Rename to sigs.k8s.io/clientgofix
2 parents 079aaf4 + 34dfa0f commit d03f6e0

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
allow_failures:
1111
go: master
1212

13-
go_import_path: github.com/liggitt/clientgofix
13+
go_import_path: sigs.k8s.io/clientgofix
1414

1515
cache:
1616
directories:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Manual adjustments required:
1919
**To install:**
2020

2121
```sh
22-
git clone https://github.com/liggitt/clientgofix.git
22+
git clone https://github.com/kubernetes-sigs/clientgofix.git
2323
cd clientgofix
2424
make install
2525
```

build/print-ldflags.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
version=$($(dirname "${BASH_SOURCE}")/print-version.sh)
44

5-
echo "-ldflags \"-X github.com/liggitt/clientgofix/pkg.Version=${version}\""
5+
echo "-ldflags \"-X sigs.k8s.io/clientgofix/pkg.Version=${version}\""

clientgofix.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
"fmt"
2222
"os"
2323

24-
"github.com/liggitt/clientgofix/pkg"
24+
"sigs.k8s.io/clientgofix/pkg"
2525
)
2626

2727
func main() {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/liggitt/clientgofix
1+
module sigs.k8s.io/clientgofix
22

33
go 1.13
44

pkg/fix.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 pkg
17+
package pkg // import "sigs.k8s.io/clientgofix/pkg"
1818

1919
import (
2020
"fmt"

0 commit comments

Comments
 (0)