The updated "git add" complains and fails, not just warns. Work it
around until it is fixed.
fi || exit $?
cd ../doc-htmlpages &&
- git add . &&
+ (git add . || echo no new files -- not a big deal) &&
if git commit -a -m "Autogenerated HTML docs for $NID"
then
git-send-pack "$MASTERREPO" master:refs/heads/html || {
install >../:man.log 2>&1 &&
cd ../doc-manpages &&
- git add . &&
+ (git add . || echo no new files -- not a big deal) &&
if git commit -a -m "Autogenerated man pages for $NID"
then
git-send-pack "$MASTERREPO" master:refs/heads/man || {