2020-07-28 11:43:21 +05:00

8 lines
147 B
Bash

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