Files
gemoji/script/bootstrap
2014-08-05 23:06:52 -07:00

10 lines
142 B
Bash
Executable File

#!/bin/bash
set -e
if type -p bundle >/dev/null; then
bundle install
else
echo "You must \`gem install bundler\` first." >&2
exit 1
fi