On 01/24/14 16:43, Ale Donnini wrote: > I'm following instruction > on > https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/update/6.4-to-6.5.md > and I did > > # MySQL > sudo -u git -H bundle install --without development test postgres --deployment > > # PostgreSQL > sudo -u git -H bundle install --without development test mysql --deployment > > > as you can see the first one command is for postgres but the comment is > mysql, I did the first command and then I tried to do the second one > (because I have mysql db) but it doesn't work, it returns the following > result. What I can do to recover the situation? > >
No, the first comment IS for mysql, watch the --without flag which omits development, test and postgres. Run the first command again and it'll work. The error is shown because bundler tries to install the postgres gem but you haven't postgres devel files installed on your system. -- GPG : 0xABF99BE5 Blog: http://axilleas.me -- You received this message because you are subscribed to the Google Groups "GitLab" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
