mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-22 10:57:42 +08:00
This changes .go-ipfs to .ipfs everywhere. And by the way this defines a DefaultPathName const for this name. License: MIT Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
14 lines
379 B
Bash
Executable File
14 lines
379 B
Bash
Executable File
#!/bin/sh
|
|
|
|
export GOPATH=$WORKSPACE
|
|
|
|
PWD=`pwd`
|
|
cd ../3nodetest
|
|
make clean
|
|
make test
|
|
make save_logs
|
|
|
|
docker cp dockertest_server_1:/root/.ipfs/logs/events.log $(PWD)/build/server-events.log
|
|
docker cp dockertest_bootstrap_1:/root/.ipfs/logs/events.log $(PWD)/build/bootstrap-events.log
|
|
docker cp dockertest_client_1:/root/.ipfs/logs/events.log $(PWD)/build/client-events.log
|