add package github.com/spf13/cobra

This commit is contained in:
fatedier
2018-04-23 02:35:50 +08:00
parent c1f57da00d
commit 4cb4da3afc
117 changed files with 19917 additions and 1 deletions

15
vendor/github.com/spf13/pflag/verify/golint.sh generated vendored Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
ROOT=$(dirname "${BASH_SOURCE}")/..
GOLINT=${GOLINT:-"golint"}
pushd "${ROOT}" > /dev/null
bad_files=$($GOLINT -min_confidence=0.9 ./...)
if [[ -n "${bad_files}" ]]; then
echo "!!! '$GOLINT' problems: "
echo "${bad_files}"
exit 1
fi
popd > /dev/null
# ex: ts=2 sw=2 et filetype=sh