mirror of
https://github.com/rancher/k3k.git
synced 2026-03-04 10:42:33 +00:00
16 lines
165 B
Bash
Executable File
16 lines
165 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd $(dirname $0)/..
|
|
|
|
go generate
|
|
|
|
source ./ops/version
|
|
|
|
if [ -n "$DIRTY" ]; then
|
|
echo Git is dirty
|
|
git status
|
|
git diff
|
|
exit 1
|
|
fi
|