heroku-buildpack-uml/bin/detect

11 lines
114 B
Plaintext
Raw Normal View History

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