heroku-buildpack-uml/bin/detect

11 lines
85 B
Plaintext
Raw Normal View History

2017-12-10 17:06:11 +00:00
#!/bin/bash
APP="$1"
2017-12-13 17:49:25 +00:00
if test -f "$APP/config.sh"
2017-12-10 17:06:11 +00:00
then echo "UML"
exit 0
fi
exit 1