mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-22 02:47:48 +08:00
25 lines
421 B
Bash
Executable File
25 lines
421 B
Bash
Executable File
#!/bin/sh
|
|
|
|
PWD=$1
|
|
|
|
if [ -z "$PWD" ]; then
|
|
echo "must pass in your current working directory"
|
|
exit 1
|
|
fi
|
|
|
|
if [ -z "$GOPATH" ]; then
|
|
echo "GOPATH not set, you must have go configured properly to install ipfs"
|
|
exit 1
|
|
fi
|
|
|
|
while [ ${#} -gt 1 ]; do
|
|
if [ "$PWD" = "$2" ]; then
|
|
exit 0
|
|
fi
|
|
shift
|
|
done
|
|
|
|
echo "go-ipfs must be built from within your \$GOPATH directory."
|
|
echo "expected within '$GOPATH' but got '$PWD'"
|
|
exit 1
|