mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
15 lines
275 B
Bash
Executable file
15 lines
275 B
Bash
Executable file
#! /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
|
|
|
|
|