Entry tags:
Making Data-ObjectDriver repository work again
So it looks like Six Apart on github has moved all their repositories to be under Say Media. This has the side effect of causing our update script to fail, because it's looking for the Data-ObjectDriver which is no longer there.
Fortunately this is easy to fix!
From the command line, run these commands:
cd $LJHOME/cvs/Data-ObjectDriver
# check the current URL. This should be git://github.com/sixapart/data-objectdriver.git
git config --get remote.origin.url
#update to the new URL
git config --replace-all remote.origin.url git://github.com/saymedia/data-objectdriver.git
# check that your changes made it through. Should now say git://github.com/saymedia/data-objectdriver.git
git config --get remote.origin.url
# now run the update as usual...
$LJHOME/bin/cvsreport.pl --update
This is a one-time fix. Only existing installations will need to do this; new installations will automatically have the correct repository in their configuration.
Fortunately this is easy to fix!
From the command line, run these commands:
cd $LJHOME/cvs/Data-ObjectDriver
# check the current URL. This should be git://github.com/sixapart/data-objectdriver.git
git config --get remote.origin.url
#update to the new URL
git config --replace-all remote.origin.url git://github.com/saymedia/data-objectdriver.git
# check that your changes made it through. Should now say git://github.com/saymedia/data-objectdriver.git
git config --get remote.origin.url
# now run the update as usual...
$LJHOME/bin/cvsreport.pl --update
This is a one-time fix. Only existing installations will need to do this; new installations will automatically have the correct repository in their configuration.