2009/10/28 Chadwick, John, DCA <john.chadwick@state.nm.us>:
I am trying to use git to update an install on a development box before we go to the production server. Today I started a directory for the koha clone on my development box. The directory is kohaclonetest
When I use git to download a clone I end up with version 3.00.01.061. I have one branch called master.
I then issue the command:
git checkout –b stable304 v3.00.04
I am now in branch stable304
I issue the following commands:
perl Makefile.PL --prev-install-log /usr/share/koha/misc/koha-install-log
make
make test
make upgrade
So far, so good. Now we should be required to update the koha database. When we navigate to http://localhost:8080 we are presented with the regular login screen, no required database updates. When we go into the koha staff side the version is still showing 3.00.01.061.
It is definitely 3.00.01.061 not 3.01.00.061 eh? As far as I know there has never been a 3.00.01.061, I suspect you have installed from master in the past, so are running 3.1.x which is higher than 3.0.x ... so you cant upgrade from that. Chris