mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-07-29 12:59:27 +00:00
* Add initial Updatecli ADR automation Signed-off-by: Guilherme Macedo <guilherme.macedo@suse.com>
11 lines
75 B
Bash
Executable File
11 lines
75 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eux
|
|
|
|
go get "${1}" >&2
|
|
go mod tidy >&2
|
|
git diff
|
|
|
|
exit 0
|
|
|