mirror of
https://github.com/aljazceru/nigiri.git
synced 2026-01-12 11:04:22 +01:00
10 lines
129 B
Bash
10 lines
129 B
Bash
#!/bin/bash
|
|
set -ex
|
|
|
|
PARENT_PATH=$(dirname $(cd $(dirname $0); pwd -P))
|
|
|
|
pushd $PARENT_PATH
|
|
dep ensure -v
|
|
|
|
go generate ./...
|
|
popd |