mirror of
https://github.com/aljazceru/nigiri.git
synced 2026-02-10 09:04:24 +01:00
* added Makefile * updated travis for makefile * fixed travis * fixed travis 2 * updated documentation for makefile
9 lines
166 B
Bash
Executable File
9 lines
166 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
|
|
PARENT_PATH=$(dirname $(cd $(dirname $0); pwd -P))
|
|
|
|
pushd $PARENT_PATH
|
|
mkdir -p build
|
|
GOOS=$1 GOARCH=$2 go build -o build/nigiri-$1-$2 ./cli
|
|
popd |