13 lines
172 B
Bash
13 lines
172 B
Bash
#!/bin/bash
|
|
|
|
# Fail on any error.
|
|
set -e
|
|
|
|
# Display commands to stderr.
|
|
set -x
|
|
|
|
# Change to repo root
|
|
cd git*/wycheproof
|
|
|
|
# Building should work.
|
|
bazel build ... || exit 1
|