diff options
Diffstat (limited to 'support/go-test')
-rwxr-xr-x | support/go-test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/support/go-test b/support/go-test index e4f87b7..0c043f6 100755 --- a/support/go-test +++ b/support/go-test @@ -4,8 +4,8 @@ require_relative 'go_build' include GoBuild def main - create_fresh_build_dir - run!(GO_ENV, %W[go test #{GO_PACKAGE}/...]) + ensure_build_dir_exists + run!(GO_ENV, %w[go test ./...], chdir: GO_DIR) puts 'OK' end |