This repository has been archived on 2023-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
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
dex/scripts/git-diff
2017-12-01 10:32:04 -08:00

8 lines
99 B
Bash
Executable File

#!/bin/bash -e
DIFF=$( git diff . )
if [ "$DIFF" != "" ]; then
echo "$DIFF" >&2
exit 1
fi