Created
December 30, 2012 17:04
-
-
Save danpalmer/4413862 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# bin/detect <build-dir> | |
# This buildpack is valid for use in project with a Build directory | |
if [ -d $1/Build ]; then | |
echo "Hammer Buildpack" | |
exit 0 | |
else | |
exit 1 | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment