[Peter Samuelson]
> [Jörg Steffens]
>> * contrib/client-side/asvn
>>   (main): uses "$@" instead of $@
> 
> That's fine.
> 
>> @@ -384,16 +412,17 @@
>>  case "$1" in
>>    checkout|co)      CHDIR=true; ACTION="post";;
>>    commit|ci)        ACTION="pre";;
>> +  status|st)        ACTION="pre";;
>>    switch|sw)        ACTION="post";;
>>    update|up)        ACTION="post";;
>>    *);;
> 
> Was this supposed to be part of the patch?

you are right. This part should be a separate patch.
New patch is attached.

Same description as before:
[[[
Bugfix for handling variables with spaces in filenames

* contrib/client-side/asvn
  (main): uses "$@" instead of $@

patch by joerg.steffens < at > dass-it.de
]]]



-- 
  Jörg Steffens            joerg.steff...@dass-it.de
  dass IT GmbH             Phone: +49.221.3565666-91
  http://www.dass-IT.de      Fax: +49.221.3565666-10

 Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRB52500
 Geschäftsführer: S. Dühr, M. Außendorf, Jörg Steffens, P. Storz
Index: contrib/client-side/asvn
===================================================================
--- contrib/client-side/asvn	(Revision 941610)
+++ contrib/client-side/asvn	(Arbeitskopie)
@@ -389,11 +389,11 @@
   *);;
 esac
 
-[ "$ACTION" =  "pre" ] && pre_checkin $@
+[ "$ACTION" =  "pre" ] && pre_checkin "$@"
 
-$SVN $@
+$SVN "$@"
 
-[ $? = 0 -a "$ACTION" = "post" ] && post_checkout $@
+[ $? = 0 -a "$ACTION" = "post" ] && post_checkout "$@"
 
 cleanup
 #

Reply via email to