mirror of
https://github.com/ipfs/kubo.git
synced 2025-06-28 00:39:31 +08:00
fix the maketarball script
* don't write the tarball in the directory we're taring (makes tar unhappy) * fix permissions * fix gopath License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>
This commit is contained in:
@ -5,17 +5,17 @@
|
||||
set -euo pipefail
|
||||
IFS=$'\n\t'
|
||||
|
||||
|
||||
OUTPUT="${1:-go-ipfs-source.tar.gz}"
|
||||
OUTPUT="$(readlink -f "${1:-go-ipfs-source.tar.gz}")"
|
||||
|
||||
TMPDIR="$(mktemp -d)"
|
||||
NEWIPFS="$TMPDIR/github.com/ipfs/go-ipfs"
|
||||
NEWIPFS="$TMPDIR/src/github.com/ipfs/go-ipfs"
|
||||
mkdir -p "$NEWIPFS"
|
||||
cp -r . "$NEWIPFS"
|
||||
( cd "$NEWIPFS" &&
|
||||
echo $PWD &&
|
||||
GOPATH="$TMPDIR" gx install --local &&
|
||||
(git rev-parse --short HEAD || true) > .tarball &&
|
||||
chmod -R u=rwX,go=rX "$NEWIPFS" # normalize permissions
|
||||
tar -czf "$OUTPUT" --exclude="./.git" .
|
||||
)
|
||||
|
||||
|
Reference in New Issue
Block a user