mirror of https://github.com/k3s-io/k3s
11 lines
75 B
Bash
11 lines
75 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -eux
|
||
|
|
||
|
go get "${1}" >&2
|
||
|
go mod tidy >&2
|
||
|
git diff
|
||
|
|
||
|
exit 0
|
||
|
|