mirror of
https://github.com/justinwoo/easy-dhall-nix.git
synced 2024-11-16 08:09:42 +01:00
22 lines
311 B
Bash
22 lines
311 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
ERRORS=0;
|
||
|
|
||
|
function test_exe () {
|
||
|
EXE=$1;
|
||
|
LOCATION=$(command -v "$EXE");
|
||
|
if [ -x "$LOCATION" ]; then
|
||
|
echo "found $EXE";
|
||
|
else
|
||
|
echo "didnt find $EXE";
|
||
|
ERRORS=1;
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
test_exe dhall;
|
||
|
test_exe dhall-to-json;
|
||
|
test_exe dhall-to-yaml;
|
||
|
test_exe dhall-to-bash;
|
||
|
|
||
|
exit $ERRORS;
|