Content
You are here:
Error in update stable/6 version 6.1.4 to 6.1.5
Added by Stéphane V almost 7 years ago
Hello,
I have a working openproject 6.1.4 instance. I try to upgrade to the latest stable/6 version with
git pull origin stable/6 bundle install npm install bundle exec rake db:migrate
I get an error in a plugin… openproject-costs (?)
rake aborted! Redmine::PluginRequirementError: openproject_costs plugin requires OpenProject version = 6.1.4 but current version is 6.1.5.
What could I do ?
Is it possible to deactivate this plugin ? (I don’t use costs)
Thank you ! :-)
Replies (1)
Hi Stéphane,
since you’re running a manual installation (judging from your update commands), you need to ensure all plugins you linked in Gemfile.plugins are also on the same tag.
So check your
Gemfile.plugins
and either remove the entry with costs and reporting, or upgrade them usinggit pull
if locally cloned.If you linked them with
gem 'openproject-costs', git: ... , branch: 'stable/6'
, you should be able to runbundle update --source openproject-costs
In the end, we recommend you move to a packaged installation to make upgrades of all plugins easier.
Best,
Oliver