Files
nigiri/scripts/install
Pietralberto Mazza 58887d3c93 Enhancements (#21)
* 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
2019-05-02 11:53:12 +02:00

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