Skip to content

Commit

Permalink
Add script to deploy to all capistrano targets
Browse files Browse the repository at this point in the history
  • Loading branch information
thomase committed Jan 18, 2013
1 parent 45826fe commit 3662ad5
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions bin/cap-all
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/usr/bin/env ruby

require 'fileutils'

Dir["config/deploy/*.rb"].map { |f| File.basename(f, ".rb") }.each do |stage|

puts "Deploying to #{stage}"
puts "*" * 80

exit_code = system("bundle", "exec", "cap", stage, *ARGV)
unless exit_code
puts "*" * 80
puts "Capistrano failed. Have a look!"
exit(1)
end

end
2 changes: 1 addition & 1 deletion lib/geordi/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Geordi
VERSION = '0.14.4'
VERSION = '0.14.5'
end

0 comments on commit 3662ad5

Please sign in to comment.