We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
go-ipfs commit on master 3f6925d
On MacOS
mk/tarball.mk contains logic that breaks on MacOS. Mac's readlink -f is not compatible with what you'd see on a Linux system unfortunately.
readlink -f
cd $GOPATH/src/ mkdir -p ipfs/go-ipfs && cd $_ git clone https://github.com/ipfs/go-ipfs.git git checkout 3f6925d # (tip of master just now) make go-ipfs-source.tar.gz
Instead of doing the right thing the command fails due to -f behaving differently than expected across platforms.
The text was updated successfully, but these errors were encountered:
daff837
No branches or pull requests
Version information:
go-ipfs commit on master 3f6925d
On MacOS
Type: "bug"
Description:
mk/tarball.mk contains logic that breaks on MacOS. Mac's
readlink -f
is not compatible with what you'd see on a Linux system unfortunately.cd $GOPATH/src/
mkdir -p ipfs/go-ipfs && cd $_
git clone https://github.com/ipfs/go-ipfs.git
git checkout 3f6925d # (tip of master just now)
make go-ipfs-source.tar.gz
Instead of doing the right thing the command fails due to -f behaving differently than expected across platforms.
The text was updated successfully, but these errors were encountered: