mirror of
https://github.com/aljazceru/nigiri.git
synced 2026-02-04 14:24:46 +01:00
* scratch ~/.nigiri when running script install * fix compose files and add esplora containers * refactor * use docker lib to check containers * collapse commands in order to have just start and stop * move from command to flag for version * update README * fix docker checks
13 lines
187 B
Bash
13 lines
187 B
Bash
#!/bin/bash
|
|
set -ex
|
|
|
|
PARENT_PATH=$(dirname $(cd $(dirname $0); pwd -P))
|
|
|
|
pushd $PARENT_PATH
|
|
dep ensure -v
|
|
|
|
go generate ./...
|
|
|
|
mkdir -p $HOME/.nigiri
|
|
cp -R cli/resources $HOME/.nigiri
|
|
popd |