Skip to content

Commit 3ee3ecb

Browse files
committed
package rename wasnt approved yet, backing out cruft that snuck into last pr
Signed-off-by: Luther Monson <[email protected]>
1 parent 02f862d commit 3ee3ecb

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

scripts/build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ cd $(dirname $0)/..
77

88
GO=${GO-go}
99

10-
PKG="github.com/k3s-io/k3s"
10+
PKG="github.com/rancher/k3s"
1111
PKG_CONTAINERD="github.com/containerd/containerd"
1212
PKG_K3S_CONTAINERD="github.com/k3s-io/containerd"
1313
PKG_CRICTL="github.com/kubernetes-sigs/cri-tools/pkg"

scripts/build-tests-sonobuoy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ PKG_TO_TEST=$(find ./pkg/ -type f -name "*_int_test.go" | sed -r 's|/[^/]+$||' |
1414
for i in $PKG_TO_TEST; do
1515
name=$(echo "${i##*/}")
1616
echo $name
17-
go test -c -v -ldflags "-X 'github.com/k3s-io/k3s/tests/util.existingServer=True'" -o dist/artifacts/k3s-integration-$name.test $i -run Integration
17+
go test -c -v -ldflags "-X 'github.com/rancher/k3s/tests/util.existingServer=True'" -o dist/artifacts/k3s-integration-$name.test $i -run Integration
1818
done
1919

2020
# Integration tests under /tests
2121
PKG_TO_TEST=$(find ./tests/integration -type f -name "*_int_test.go" | sed -r 's|/[^/]+$||' |sort -u)
2222
for i in $PKG_TO_TEST; do
2323
name=$(echo "${i##*/}")
2424
echo $name
25-
go test -c -v -ldflags "-X 'github.com/k3s-io/k3s/tests/util.existingServer=True'" -o dist/artifacts/k3s-integration-$name.test $i -run Integration
25+
go test -c -v -ldflags "-X 'github.com/rancher/k3s/tests/util.existingServer=True'" -o dist/artifacts/k3s-integration-$name.test $i -run Integration
2626
done
2727
docker build -f ./tests/integration/Dockerfile.test -t $REPO .
2828
docker save $REPO -o ./dist/artifacts/$REPO.tar

scripts/package-cli

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ CMD_NAME=dist/artifacts/k3s${BIN_SUFFIX}
5252

5353
"${GO}" generate
5454
LDFLAGS="
55-
-X github.com/k3s-io/k3s/pkg/version.Version=$VERSION
56-
-X github.com/k3s-io/k3s/pkg/version.GitCommit=${COMMIT:0:8}
55+
-X github.com/rancher/k3s/pkg/version.Version=$VERSION
56+
-X github.com/rancher/k3s/pkg/version.GitCommit=${COMMIT:0:8}
5757
-w -s
5858
"
5959
STATIC="-extldflags '-static'"

0 commit comments

Comments
 (0)