Sha256: 4a3eaeb3f84ec83d4264983014564bd5ffc662555e792551986abbbf6874af8d
Contents?: true
Size: 703 Bytes
Versions: 11
Compression:
Stored size: 703 Bytes
Contents
#!/bin/bash if [ -z $CVSDIR ]; then CVSDIR=$HOME/dev/ruby-feedparser/website fi TARGET=$CVSDIR/rdoc echo "Copying rdoc documentation to $TARGET." if [ ! -d $TARGET ]; then echo "$TARGET doesn't exist, exiting." exit 1 fi rsync -a rdoc/ $TARGET/ echo "###########################################################" echo "CVS status :" cd $TARGET svn st echo "CVS Adding files." while [ $(svn st | grep "^? " | wc -l) -gt 0 ]; do svn add $(svn st | grep "^? " | awk '{print $2}') done echo "###########################################################" echo "CVS status after adding missing files:" svn st echo "Commit changes now with" echo "# (cd $TARGET && svn commit -m \"rdoc update\")" exit 0
Version data entries
11 entries across 11 versions & 2 rubygems