Skip to content

Instantly share code, notes, and snippets.

@steveh
Created January 21, 2016 19:43
Show Gist options
  • Save steveh/004fbacdb131bad377e1 to your computer and use it in GitHub Desktop.
Save steveh/004fbacdb131bad377e1 to your computer and use it in GitHub Desktop.
#!/bin/bash
cd "/srv/www/$1/current" || exit
if [ -f bin/console ]; then
BIN="./bin/console"
elif [ -f Gemfile ] && grep -q rack-console Gemfile; then
BIN="rack-console"
else
BIN="irb"
fi
echo "Running $BIN"
sudo su -c "foreman run bundle exec $BIN" deploy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment