On Jun 26, 2011 9:45 AM, "Daniel Shahaf" <d...@daniel.shahaf.name> wrote: > > Daniel Shahaf wrote on Sun, Jun 26, 2011 at 16:21:00 +0300: > > Running it: > > [[[ > > % for i in foo-*; do echo ./$i; ./$i; done > > ./foo-3.7.6.3 > > ./foo-3.7.7 > > Error 17: database schema has changed > > % > > ]]] > > > > Correction: > > [[[ > % for i in foo-*; do rm foo.db && echo $i && ./$i; done > foo-3.7.6.3 > foo-3.7.7 > Error 17: database schema has changed > ]]]
Wait a second. You rm the database? I thought this was a bug with carrying databases over to the new release? Cheers, -g