Documentation
api
cmd
connector
examples
pkg
scripts
manifests
get-protoc
git-diff
git-version
gofmt
slapd.sh
test-k8s.sh
server
storage
vendor
version
web
.dockerignore
.gitignore
.travis.yml
ADOPTERS.md
DCO
Dockerfile
LICENSE
MAINTAINERS
Makefile
NOTICE
README.md
code-of-conduct.md
go.mod
go.sum
vendor.go
8 lines
99 B
Bash
Executable File
8 lines
99 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
DIFF=$( git diff . )
|
|
if [ "$DIFF" != "" ]; then
|
|
echo "$DIFF" >&2
|
|
exit 1
|
|
fi
|