Added build check to makefile

This commit is contained in:
Joseph Henry
2016-06-23 12:07:51 -07:00
parent b83a9cdf83
commit df8c4582e5
2 changed files with 32 additions and 0 deletions

9
check.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
FILE="$1"
if [ -f "$FILE" ] || [ -d "$FILE" ];
then
echo "[OK ] $FILE"
else
echo "[FAIL] $FILE" >&2
fi