0

我正在使用这个提交后脚本(这不是我的工作,我从这里获得)。

#!/bin/bash

REPOS="$1"
REV="$2"

# A - Item added to repository
# D - Item deleted from repository
# U - File contents changed
# _U - Properties of item changed; note the leading underscore
# UU - File contents and properties changed

# Files and directories can be distinguished, as directory paths are displayed with a trailing "/" character.

LOOK=/usr/bin/svnlook
SVN=/usr/bin/svn 
DEV=/var/www/my_web

cd /var/tmp/svn
  for changes in `$LOOK changed $REPOS | awk '{print $1 "=" $2;}'`;
  do
        len=${#changes}
        idx=`expr index "$changes" =`;
        directory=${changes:$idx};
        action=${changes:0:$idx-1};
        if [ ${changes:len-1} = '/' ]
        then
            case "$action" in
                "A" ) \
                    mkdir --mode=775 -p $DEV/$directory;
                    chown www-data:www-data $DEV/$directory;
                    chmod 775 $DEV/$directory;
                    ;;
                "D" ) \
                    rmdir $DEV/$directory;
                    ;;
            esac
        else
            case "$action" in
                "A"|"U"|"UU" ) \
                    $SVN export --force --non-interactive -r HEAD -q file://$REPOS/$directory;
                    BASE=`basename $directory`;
                    DIR=`dirname $directory`;
                    chown www-data:www-data $BASE;
                    chmod 775 $BASE;
                    mkdir --mode=775 -p $DEV/$DIR;
                    cp -f --preserve=ownership $BASE $DEV/$DIR;
                    unlink $BASE;
                    ;;
                "D" ) \
                    rm -f $DEV/$directory;
                    ;;
            esac
        fi
  done

exit 0

脚本完美运行 - 添加/删除文件、文件夹、设置权限,但如果我提交名称为“@layout.latte”的文件,我可以在我的服务器上的 SVN 树中看到这个文件(所以提交工作正常)但提交后脚本不会将此文件复制到我的 /var/www/my_web 文件夹中。

有谁知道为什么?非常感谢!我到处寻找,但我没有任何运气。

编辑:它也不适用于像“test@test.txt”这样的文件。这是因为“@”,但我不知道如何解决它。我认为像逃避这样的事情可能会有所帮助,但我真的不是一个“bash guy”:)

4

1 回答 1

1

@在 Subversion URLs 中有一个特殊的含义——但只针对最终的@. 您需要在 URL 中将 URL 编码@为 %40,或在 URL 中附加一个尾随@

于 2013-03-12T20:14:31.473 回答