12 lines
156 B
Bash
Executable File
12 lines
156 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
script_dir=$(dirname "$(realpath "$0")")
|
|
cd $script_dir/..
|
|
|
|
# prep
|
|
$script_dir/build
|
|
|
|
go test -v ./cmd/chkbit/util
|
|
go test -v ./scripts
|