heroku-buildpack-hello/bin/detect
David Dollar 410a52780f initial
2011-09-26 13:35:37 -04:00

9 lines
149 B
Bash
Executable file

#!/bin/sh
# this pack is valid for apps with a hello.txt in the root
if [ -f $1/hello.txt ]; then
echo "HelloFramework"
exit 0
else
exit 1
fi