File tree 4 files changed +8
-4
lines changed
integration/examples/custom
4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 2
2
set -e
3
3
4
4
if ! [ -x " $( command -v ko) " ]; then
5
- GO111MODULE=on go get -mod=readonly github.com/google/ko/cmd/ko
5
+ pushd $( mktemp -d)
6
+ go mod init tmp; go get github.com/google/ko/cmd/ko
7
+ popd
6
8
fi
7
9
8
10
output=$( ko publish --local --preserve-import-paths --tags= . | tee)
Original file line number Diff line number Diff line change 1
1
module github.com/GoogleContainerTools/skaffold/examples/custom
2
2
3
- go 1.13
3
+ go 1.14
Original file line number Diff line number Diff line change 2
2
set -e
3
3
4
4
if ! [ -x " $( command -v ko) " ]; then
5
- GO111MODULE=on go get -mod=readonly github.com/google/ko/cmd/ko
5
+ pushd $( mktemp -d)
6
+ go mod init tmp; go get github.com/google/ko/cmd/ko
7
+ popd
6
8
fi
7
9
8
10
output=$( ko publish --local --preserve-import-paths --tags= . | tee)
Original file line number Diff line number Diff line change 1
1
module github.com/GoogleContainerTools/skaffold/examples/custom
2
2
3
- go 1.13
3
+ go 1.14
You can’t perform that action at this time.
0 commit comments