update vendor

Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
This commit is contained in:
Jess Frazelle 2018-09-25 12:27:46 -04:00
parent 19a32db84d
commit 94d1cfbfbf
No known key found for this signature in database
GPG key ID: 18F3685C0022BFF3
10501 changed files with 2307943 additions and 29279 deletions

17
vendor/github.com/docker/cli/scripts/validate/check-git-diff generated vendored Executable file
View file

@ -0,0 +1,17 @@
#!/bin/sh
set -eu
DIFF_PATH=$1
DIFF=$(git status --porcelain -- "$DIFF_PATH")
if [ "$DIFF" ]; then
echo
echo "These files were changed:"
echo
echo "$DIFF"
echo
exit 1
else
echo "$DIFF_PATH is correct"
fi;

5
vendor/github.com/docker/cli/scripts/validate/shellcheck generated vendored Executable file
View file

@ -0,0 +1,5 @@
#!/usr/bin/env bash
set -eo pipefail
shellcheck contrib/completion/bash/docker
find scripts/ -type f | grep -v scripts/winresources | grep -v '.*.ps1' | xargs shellcheck