Files
stf/buildpack/buildpacks/gulp/bin/detect
2014-07-30 17:49:10 +09:00

9 lines
131 B
Bash
Executable File

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