1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-08-06 19:44:01 +08:00

fix: maketarball.sh for OSX

Just stop using realpath, should not matter.

License: MIT
Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
This commit is contained in:
Jakub Sztandera
2018-10-09 20:02:22 +01:00
parent 0f3485e209
commit 57adfee1ab

View File

@ -6,7 +6,7 @@ set -euo pipefail
IFS=$'\n\t'
OUTPUT=$(realpath ${1:-go-ipfs-source.tar.gz})
OUTPUT="${1:-go-ipfs-source.tar.gz}"
TMPDIR="$(mktemp -d)"
NEWIPFS="$TMPDIR/github.com/ipfs/go-ipfs"