mirror of
https://github.com/krislamo/vagrant-easyredmine
synced 2024-11-12 23:50:34 +00:00
10 lines
164 B
Plaintext
10 lines
164 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
# retrieve svn changes for Redmine
|
||
|
|
||
|
cd {{ redmine_root_dir }}
|
||
|
|
||
|
/usr/local/bin/bundle exec rake \
|
||
|
redmine:fetch_changesets \
|
||
|
RAILS_ENV="production"
|