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