mirror of https://github.com/k3s-io/k3s
11 lines
80 B
Bash
11 lines
80 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -eux
|
||
|
|
||
|
./scripts/download >&2
|
||
|
go generate >&2
|
||
|
git diff
|
||
|
|
||
|
exit 0
|
||
|
|