1bd52b9f90
What: Adds macaroon support to the server side Why: So that api keys are now macaroons
12 lines
209 B
Bash
Executable File
12 lines
209 B
Bash
Executable File
#!/usr/bin/env 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
|