You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by pe...@apache.org on 2010/05/06 15:48:52 UTC

svn commit: r941728 - /subversion/trunk/contrib/client-side/asvn

Author: peters
Date: Thu May  6 13:48:52 2010
New Revision: 941728

URL: http://svn.apache.org/viewvc?rev=941728&view=rev
Log:
* contrib/client-side/asvn
  (main): Use "$@" instead of $@, to handle spaces in filenames.

Patch by: joerg.steffens@dass-it.de

Modified:
    subversion/trunk/contrib/client-side/asvn

Modified: subversion/trunk/contrib/client-side/asvn
URL: http://svn.apache.org/viewvc/subversion/trunk/contrib/client-side/asvn?rev=941728&r1=941727&r2=941728&view=diff
==============================================================================
--- subversion/trunk/contrib/client-side/asvn (original)
+++ subversion/trunk/contrib/client-side/asvn Thu May  6 13:48:52 2010
@@ -389,11 +389,11 @@ case "$1" in
   *);;
 esac
 
-[ "$ACTION" =  "pre" ] && pre_checkin $@
+[ "$ACTION" =  "pre" ] && pre_checkin "$@"
 
-$SVN $@
+$SVN "$@"
 
-[ $? = 0 -a "$ACTION" = "post" ] && post_checkout $@
+[ $? = 0 -a "$ACTION" = "post" ] && post_checkout "$@"
 
 cleanup
 #