10 lines
80 B
Bash
Executable File
10 lines
80 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
source build.bash
|
|
|
|
go test ./... $*
|