texi2html-bug
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Texi2html-bug] CVS successfully moved to Savannah


From: Derek Price
Subject: [Texi2html-bug] CVS successfully moved to Savannah
Date: Thu, 14 Jul 2005 09:47:40 -0400
User-agent: Mozilla Thunderbird 1.0.2 (Windows/20050317)

Instructions for accessing the freshly imported texi2html repository on
savannah are here: <https://savannah.nongnu.org/cvs/?group=texi2html>.

The entire repository was imported, so you can use an existing workspace
if you update all its CVS/Root files.  Passed the new CVSROOT string and
run in the root of an existing workspace, the attached script will do that.

Regards,

Derek
#! /bin/sh
#
# Copyright 2002 Derek R. Price & Ximbiot <http://ximbiot.com>.
# All rights reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
#
# ///// ///// ///// ///// ///// ***** \\\\\ \\\\\ \\\\\ \\\\\ \\\\\
#
# newcvsroot.sh
#
# Recursively change the CVSROOT for a sandbox.
#
# INPUTS
#       $1              The new CVSROOT
#       $2+             The list of sandbox directories to convert.
#                       Defaults to the current directory.

usage ()
{
        echo "$0: usage: $prog newcvsroot [startdir]" >&2
}

prog=`basename "$0"`

if test "${1+set}" != set; then
        usage
        exit 2
else :; fi

echo "$1" >/tmp/$prog$$
shift

find "${@:-.}" -name CVS -type d -exec \
        cp /tmp/$prog$$ "{}/Root" \;

rm /tmp/$prog$$

reply via email to

[Prev in Thread] Current Thread [Next in Thread]