ecde1bd251
What: Use -race for check-imports, this means it will use the cached build files. Why:
11 lines
200 B
Bash
Executable File
11 lines
200 B
Bash
Executable File
#!/bin/bash
|
|
|
|
CHANGES=$(grep -r --include="*.dbx.go" regexp.MustCompile .)
|
|
|
|
if [ -z "$CHANGES" ]
|
|
then
|
|
echo "dbx version ok"
|
|
else
|
|
echo "please use latest dbx tool to generate code"
|
|
exit 1
|
|
fi |