mirror of
https://github.com/aljazceru/nigiri.git
synced 2026-01-09 09:34:45 +01:00
* added Makefile * updated travis for makefile * fixed travis * fixed travis 2 * updated documentation for makefile
12 lines
169 B
Bash
Executable File
12 lines
169 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
|
|
PARENT_PATH=$(dirname $(cd $(dirname $0); pwd -P))
|
|
|
|
pushd $PARENT_PATH
|
|
|
|
go generate ./...
|
|
|
|
mkdir -p $HOME/.nigiri
|
|
cp -R resources $HOME/.nigiri
|
|
popd |