Skip to content

Instantly share code, notes, and snippets.

@invalidusrname
Last active April 3, 2019 15:08
Show Gist options
  • Save invalidusrname/5f0cd8fee1eec2adbd85 to your computer and use it in GitHub Desktop.
Save invalidusrname/5f0cd8fee1eec2adbd85 to your computer and use it in GitHub Desktop.
capistrano cleanup across repos
for app in /var/repos/*; do if [ -f $app/Capfile ]; then cd $app; bundle; bundle exec cap deploy:cleanup -s keep_releases=2; fi; done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment