mirror of
https://github.com/k3s-io/k3s.git
synced 2026-02-20 00:10:20 -05:00
* Add initial Updatecli ADR automation Signed-off-by: Guilherme Macedo <guilherme.macedo@suse.com>
10 lines
75 B
Bash
Executable file
10 lines
75 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -eux
|
|
|
|
go get "${1}" >&2
|
|
go mod tidy >&2
|
|
git diff
|
|
|
|
exit 0
|
|
|