git-subtree-dir: third_party/mason git-subtree-split: 1b3085e812b08ef092ba43945e3ab9f802632280
11 lines
175 B
Bash
Executable File
11 lines
175 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
function assertEqual() {
|
|
if [ "$1" == "$2" ]; then
|
|
echo "ok - $1 ($3)"
|
|
else
|
|
echo "not ok - $1 != $2 ($3)"
|
|
CODE=1
|
|
fi
|
|
}
|