1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-06-29 17:36:38 +08:00

iptb-lib: small cleanup

License: MIT
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
This commit is contained in:
Christian Couder
2016-02-01 13:23:51 +01:00
parent cacb1cc2d4
commit d1f15d445b

View File

@ -3,16 +3,17 @@
# Copyright (c) 2014, 2016 Jeromy Johnson, Christian Couder # Copyright (c) 2014, 2016 Jeromy Johnson, Christian Couder
# MIT Licensed; see the LICENSE file in this repository. # MIT Licensed; see the LICENSE file in this repository.
export IPTB_ROOT="`pwd`/.iptb" export IPTB_ROOT="$(pwd)/.iptb"
ipfsi() { ipfsi() {
dir="$1" dir="$1"
shift shift
IPFS_PATH="$IPTB_ROOT/$dir" ipfs $@ IPFS_PATH="$IPTB_ROOT/$dir" ipfs "$@"
} }
check_has_connection() { check_has_connection() {
node=$1 node="$1"
ipfsi $node swarm peers | grep ipfs > /dev/null ipfsi "$node" swarm peers >"swarm_peers_$node" &&
grep "ipfs" "swarm_peers_$node" >/dev/null
} }