Skip to content

Commit

Permalink
Merge pull request #2 from liggitt/rename-imports
Browse files Browse the repository at this point in the history
Rename to sigs.k8s.io/clientgofix
  • Loading branch information
k8s-ci-robot committed Mar 20, 2020
2 parents 079aaf4 + 34dfa0f commit d03f6e0
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
allow_failures:
go: master

go_import_path: github.com/liggitt/clientgofix
go_import_path: sigs.k8s.io/clientgofix

cache:
directories:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Manual adjustments required:
**To install:**

```sh
git clone https://github.com/liggitt/clientgofix.git
git clone https://github.com/kubernetes-sigs/clientgofix.git
cd clientgofix
make install
```
Expand Down
2 changes: 1 addition & 1 deletion build/print-ldflags.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

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

echo "-ldflags \"-X github.com/liggitt/clientgofix/pkg.Version=${version}\""
echo "-ldflags \"-X sigs.k8s.io/clientgofix/pkg.Version=${version}\""
2 changes: 1 addition & 1 deletion clientgofix.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"fmt"
"os"

"github.com/liggitt/clientgofix/pkg"
"sigs.k8s.io/clientgofix/pkg"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/liggitt/clientgofix
module sigs.k8s.io/clientgofix

go 1.13

Expand Down
2 changes: 1 addition & 1 deletion pkg/fix.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/

package pkg
package pkg // import "sigs.k8s.io/clientgofix/pkg"

import (
"fmt"
Expand Down

0 comments on commit d03f6e0

Please sign in to comment.