#!/bin/sh set -x D=staffcvs@sphinx:/home/cvs R=tftpboot/macmini P=cvs if [ -d $P/$R ]; then rm -rf $P/$R fi if [ ! -d $P/$R ]; then mkdir -p $P/$R rmdir $P/$R (cd $P && cvs -d $D co $R) fi D=$P/$R/intel64/x86_64 S=build_x86_64 cp $S/grub.efi $D/ cp $S/*.mod $S/fs.lst $S/command.lst $S/handler.lst $D/grub D=$P/$R/intel64/ia32 S=build_i386 cp $S/grub.efi $D/ cp $S/*.mod $S/fs.lst $S/command.lst $S/handler.lst $D/grub for i in $P/$R/intel64/ia32 $P/$R/intel64/x86_64; do (cd $i && cvs add -kb grub.efi grub/*.lst grub/*.mod ) done (cd $P/$R && cvs commit -m "")