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