Commit d63b0c61b4a5e0011038c45ab1a1eda4e5123498
Committed by
Sergio Oliveira
1 parent
e4465569
Exists in
master
and in
39 other branches
Added verbose when installing gems
Showing
2 changed files
with
4 additions
and
4 deletions
Show diff stats
scripts/gitlab.sh
... | ... | @@ -84,7 +84,7 @@ sudo -u git echo "production: |
84 | 84 | # Baixando as dependencias, criando o banco, instalando de fato |
85 | 85 | sudo su - git -c 'cd /home/git/gitlab && bundle config build.pg' |
86 | 86 | sudo su - git -c 'cd /home/git/gitlab && bundle config build.nokogiri --use-system-libraries' |
87 | -sudo su - git -c 'cd /home/git/gitlab && bundle install --deployment --without development test mysql aws' | |
87 | +sudo su - git -c 'cd /home/git/gitlab && bundle install --verbose --deployment --without development test mysql aws' | |
88 | 88 | sudo su - git -c 'cd /home/git/gitlab && echo yes | bundle exec rake db:create db:migrate RAILS_ENV=production' |
89 | 89 | sudo su - git -c 'cd /home/git/gitlab && echo yes | bundle exec rake gitlab:setup RAILS_ENV=production' |
90 | 90 | sudo su - git -c 'cd /home/git/gitlab bundle exec rake assets:precompile RAILS_ENV=production' | ... | ... |
scripts/redmine.sh
... | ... | @@ -31,7 +31,7 @@ cd /opt |
31 | 31 | git clone https://github.com/redmine/redmine.git --branch 2.3-stable |
32 | 32 | |
33 | 33 | cd /opt/redmine |
34 | -bundle install --without mysql sqlite | |
34 | +bundle install --verbose --without mysql sqlite | |
35 | 35 | gem install unicorn --no-ri --no-rdoc |
36 | 36 | gem install pg -v '0.17.1' --no-ri --no-rdoc |
37 | 37 | |
... | ... | @@ -69,12 +69,12 @@ git checkout v1.0.6 |
69 | 69 | |
70 | 70 | RAILS_ENV=production |
71 | 71 | export RAILS_ENV |
72 | -bundle install | |
72 | +bundle install --verbose | |
73 | 73 | |
74 | 74 | gem uninstall rack -v '1.5.2' |
75 | 75 | |
76 | 76 | cd /opt/redmine |
77 | -bundle install --without mysql sqlite | |
77 | +bundle install --verbose --without mysql sqlite | |
78 | 78 | bundle exec rake db:migrate |
79 | 79 | bundle exec rake redmine:backlogs:install story_trackers=2 task_tracker=1 |
80 | 80 | ... | ... |