Remove compose-bindata script, it should move to docker/cli

Signed-off-by: Daniel Nephin <dnephin@docker.com>
This commit is contained in:
Daniel Nephin 2017-05-09 10:38:36 -04:00
parent 7f968435f6
commit 47cceb7f2c
2 changed files with 0 additions and 29 deletions

View File

@ -1,28 +0,0 @@
#!/usr/bin/env bash
export SCRIPTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source "${SCRIPTDIR}/.validate"
IFS=$'\n'
files=( $(validate_diff --diff-filter=ACMR --name-only -- 'cli/compose/schema/data' || true) )
unset IFS
if [ ${#files[@]} -gt 0 ]; then
go generate github.com/docker/docker/cli/compose/schema 2> /dev/null
# Let see if the working directory is clean
diffs="$(git status --porcelain -- cli/compose/schema 2>/dev/null)"
if [ "$diffs" ]; then
{
echo 'The result of `go generate github.com/docker/docker/cli/compose/schema` differs'
echo
echo "$diffs"
echo
echo 'Please run `go generate github.com/docker/docker/cli/compose/schema`'
} >&2
false
else
echo 'Congratulations! cli/compose/schema/bindata.go is up-to-date.'
fi
else
echo 'No cli/compose/schema/data changes in diff.'
fi

View File

@ -16,4 +16,3 @@ export SCRIPTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
. $SCRIPTDIR/vet
. $SCRIPTDIR/changelog-well-formed
. $SCRIPTDIR/changelog-date-descending
. $SCRIPTDIR/compose-bindata