svn hooks post-commitフック自動配置
2129 ワード
#!/bin/sh
#
export LANG=zh_CN.utf-8
#Set variable
REPOS="$1"
REV="$2"
SVN=/usr/bin/svn
WEB=/home/www/develop
LOG=/var/log/svn/post-commit.log
#update the code from the SVN
$SVN update $WEB --username username --password passwd --non-interactive
chown -R www-data:www-data $WEB
chmod -R 755 $WEB
#......................
if [ $? == 0 ]
then
echo "$REPOS" "$REV" >> $LOG
echo `date` >> $LOG
echo "##############################" >> $LOG
fi
#!/bin/sh
#
export LANG=zh_CN.utf-8
#Set variable
REPOS="$1"
REV="$2"
SVN=/usr/bin/svn
WEB=/home/www/develop
LOG=/var/log/svn/post-commit.log
#update the code from the SVN
$SVN update $WEB --username username --password passwd --non-interactive
chown -R www-data:www-data $WEB
chmod -R 755 $WEB
#......................
if [ $? == 0 ]
then
echo "$REPOS" "$REV" >> $LOG
echo `date` >> $LOG
echo "##############################" >> $LOG
fi