12 lines
174 B
Bash
Executable File
12 lines
174 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 -count=1
|
|
go test -v ./scripts -count=1
|