2020-07-28 12:14:28 +05:00

8 lines
126 B
Bash

#!/usr/bin/env bash
# bin/detect <build-dir>
if [[ -f $1/Makefile ]]; then
echo "C" && exit 0
else
echo "no" && exit 1
fi