Vendor libraries for github.com/spf13/cobra

This commit is contained in:
Alexander Neumann
2016-12-30 20:42:05 +01:00
committed by Zlatko Čalušić
parent e945404183
commit 6bee34700d
77 changed files with 14150 additions and 4 deletions

19
vendor/github.com/spf13/pflag/verify/gofmt.sh generated vendored Executable file
View File

@@ -0,0 +1,19 @@
#!/bin/bash
set -o errexit
set -o nounset
set -o pipefail
ROOT=$(dirname "${BASH_SOURCE}")/..
pushd "${ROOT}" > /dev/null
GOFMT=${GOFMT:-"gofmt"}
bad_files=$(find . -name '*.go' | xargs $GOFMT -s -l)
if [[ -n "${bad_files}" ]]; then
echo "!!! '$GOFMT' needs to be run on the following files: "
echo "${bad_files}"
exit 1
fi
# ex: ts=2 sw=2 et filetype=sh