4d65b80903
- Also get rid of @bazel_skylib dependency
17 lines
193 B
Bash
Executable File
17 lines
193 B
Bash
Executable File
#/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
want=$WANT
|
|
binary=$BINARY
|
|
|
|
got=$($binary)
|
|
|
|
if [[ "$got" != "$want" ]]; then
|
|
echo wanted:
|
|
echo \ \ "$want"
|
|
echo got:
|
|
echo \ \ "$got"
|
|
exit 1
|
|
fi
|