Skip to content

Instantly share code, notes, and snippets.

@danpalmer
Created December 30, 2012 17:04
Show Gist options
  • Save danpalmer/4413862 to your computer and use it in GitHub Desktop.
Save danpalmer/4413862 to your computer and use it in GitHub Desktop.
#!/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