alexbevi / redmine_knowledgebase

A knowledgebase plugin for Redmine
452 stars 199 forks source link

Error: The git source git://github.com/alexbevi/redmine_acts_as_taggable_on.git is not yet checked out. #329

Closed Josuefdz closed 8 years ago

Josuefdz commented 8 years ago

I'm trying to install the new version 3.2.0 of the plugin. I'm executing the following statement:

rake redmine:plugins:migrate RAILS_ENV=production

this returns the following error message:

The git source git://github.com/alexbevi/redmine_acts_as_taggable_on.git is not yet checked out. Please runbundle installbefore trying to start your applica tion

I then execute bundle install and then I get the following error message:

Fetching git://github.com/alexbevi/redmine_acts_as_taggable_on.git fatal: read error: Invalid argument Retrying git clone "git://github.com/alexbevi/redmine_acts_as_taggable_on.git" " D:/Redmine/ruby/lib/ruby/gems/2.0.0/cache/bundler/git/redmine_acts_as_taggable_o n-82f0b3fd11b92d791c4838695491decb70c3b979" --bare --no-hardlinks --quiet due to error (2/3): Bundler::Source::Git::GitCommandError Git error: commandgit clon e "git://github.com/alexbevi/redmine_acts_as_taggable_on.git" "D:/Redmine/ruby/l ib/ruby/gems/2.0.0/cache/bundler/git/redmine_acts_as_taggable_on-82f0b3fd11b92d7 91c4838695491decb70c3b979" --bare --no-hardlinks --quietin directory D:/Redmin e/apps/redmine/htdocs/bin has failed. fatal: read error: Invalid argument

Any idea on what could be the problem?

Josuefdz commented 8 years ago

I was able to fix the problem. Just updated my Gemfile from:

gem 'redmine_acts_as_taggable_on', github: "alexbevi/redmine_acts_as_taggable_on" gem 'ya2yaml' gem 'awesome_nested_set'

to

gem 'redmine_acts_as_taggable_on', '~> 1.0' gem 'ya2yaml' gem 'awesome_nested_set'

and that fixed the problem