diff options
author | Gunnar Wrobel <wrobel@gentoo.org> | 2005-02-09 07:17:59 +0000 |
---|---|---|
committer | Gunnar Wrobel <wrobel@gentoo.org> | 2005-02-09 07:17:59 +0000 |
commit | fea1d2200fa856d165dbb10440e232cde01f5267 (patch) | |
tree | f6821c08d9f26dc4b5e3a4a99329f4bc5b81e1c5 | |
parent | Added serendipity, bumped knowledgeTree and added gpg-update script (diff) | |
download | misc-fea1d2200fa856d165dbb10440e232cde01f5267.tar.gz misc-fea1d2200fa856d165dbb10440e232cde01f5267.tar.bz2 misc-fea1d2200fa856d165dbb10440e232cde01f5267.zip |
svn-add svn-del fixes
svn path=/z-distfiles/; revision=92
-rwxr-xr-x | z-distfiles/scripts-gw-1.1/svn-add | 10 | ||||
-rwxr-xr-x | z-distfiles/scripts-gw-1.1/svn-del | 10 |
2 files changed, 16 insertions, 4 deletions
diff --git a/z-distfiles/scripts-gw-1.1/svn-add b/z-distfiles/scripts-gw-1.1/svn-add index 6b4d99a..79aaea7 100755 --- a/z-distfiles/scripts-gw-1.1/svn-add +++ b/z-distfiles/scripts-gw-1.1/svn-add @@ -5,10 +5,16 @@ FILES=`svn status | sed -e '/^[^?]/d s/^ *// s/ /\\ /'` -echo ${FILES} +for FL in ${FILES} + do + echo ${FL} +done if [ "${1}" = "do" ]; then if [ "x${FILES}" != "x" ]; then - svn add ${FILES} + for FL in ${FILES} + do + svn add "${FL}" + done fi fi diff --git a/z-distfiles/scripts-gw-1.1/svn-del b/z-distfiles/scripts-gw-1.1/svn-del index 1dc830d..8871cd6 100755 --- a/z-distfiles/scripts-gw-1.1/svn-del +++ b/z-distfiles/scripts-gw-1.1/svn-del @@ -5,10 +5,16 @@ FILES=`svn status | sed -e '/^[^!]/d s/^ *// s/ /\\ /'` -echo ${FILES} +for FL in ${FILES} + do + echo ${FL} +done if [ "${1}" = "do" ]; then if [ "x${FILES}" != "x" ]; then - svn del ${FILES} + for FL in ${FILES} + do + svn del "${FL}" + done fi fi |