8 lines
126 B
Bash
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 |