mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
0252ad0adc
The validation script from #10681 is too pedantic, and does not handle
well situations like:
```
cat <<EOF # or <<-EOF
Whether the leading whitespace is stripped out or not by bash
it should still be considered as valid.
EOF
```
This reverts commit 4e65c1c319
.
Signed-off-by: Tibor Vass <tibor@docker.com>
34 lines
757 B
Bash
34 lines
757 B
Bash
#!/bin/bash
|
|
|
|
DEST="$1"
|
|
CROSS="$DEST/../cross"
|
|
|
|
set -e
|
|
|
|
if [ ! -d "$CROSS/linux/amd64" ]; then
|
|
echo >&2 'error: binary and cross must be run before tgz'
|
|
false
|
|
fi
|
|
|
|
for d in "$CROSS/"*/*; do
|
|
GOARCH="$(basename "$d")"
|
|
GOOS="$(basename "$(dirname "$d")")"
|
|
BINARY_NAME="docker-$VERSION"
|
|
BINARY_EXTENSION="$(export GOOS && binary_extension)"
|
|
BINARY_FULLNAME="$BINARY_NAME$BINARY_EXTENSION"
|
|
mkdir -p "$DEST/$GOOS/$GOARCH"
|
|
TGZ="$DEST/$GOOS/$GOARCH/$BINARY_NAME.tgz"
|
|
|
|
mkdir -p "$DEST/build"
|
|
|
|
mkdir -p "$DEST/build/usr/local/bin"
|
|
cp -L "$d/$BINARY_FULLNAME" "$DEST/build/usr/local/bin/docker$BINARY_EXTENSION"
|
|
|
|
tar --numeric-owner --owner 0 -C "$DEST/build" -czf "$TGZ" usr
|
|
|
|
hash_files "$TGZ"
|
|
|
|
rm -rf "$DEST/build"
|
|
|
|
echo "Created tgz: $TGZ"
|
|
done
|