Files
gemoji/script/bootstrap
2016-02-05 14:52:21 +11:00

11 lines
185 B
Bash
Executable File

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