mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 21:12:26 +01:00
16 lines
275 B
Text
16 lines
275 B
Text
#! /bin/sh
|
|||
|
|||
CVSROOT=my@work.mysql.com:/home/cvs
|
|||
CVS_RSH=ssh
|
|||
TMPDIR=/tmp
|
|||
cd $TMPDIR
|
|||
[ -d mysql ] && rm -rf mysql
|
|||
CVSROOT=$CVSROOT CVS_RSH=$CVS_RSH cvs -z 9 co mysql && cd mysql && \
|
|||
chmod u+w -R * && BUILD/compile-pentium
|
|||
if test $? = 0
|
|||
then
|
|||
cd $TMPDIR && rm -rf mysql
|
|||
fi
|
|||
|
|||
|