Skip to content
This repository has been archived by the owner on Sep 1, 2020. It is now read-only.

On clean server builds, the deploy scripts fail because bundler is not installed #14

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/git_deploy.rb
Expand Up @@ -38,6 +38,7 @@ def setup
cmd << "sed -i'' -e 's/master/#{branch}/' .git/HEAD" unless branch == 'master'
cmd << "git config --bool receive.denyNonFastForwards false" if options.shared?
cmd << "git config receive.denyCurrentBranch ignore"
cmd << "gem install bundler --no-rdoc --no-ri"
end

invoke :hooks
Expand Down