Author: jannis
Date: 2007-02-14 12:18:04 +0000 (Wed, 14 Feb 2007)
New Revision: 24978

Modified:
   xfce4-dev-tools/trunk/ChangeLog
   xfce4-dev-tools/trunk/scripts/xdt-commit
Log:
        * scripts/xdt-commit: Too much quoting - all input files were
          treated as one string.

Modified: xfce4-dev-tools/trunk/ChangeLog
===================================================================
--- xfce4-dev-tools/trunk/ChangeLog     2007-02-14 12:17:05 UTC (rev 24977)
+++ xfce4-dev-tools/trunk/ChangeLog     2007-02-14 12:18:04 UTC (rev 24978)
@@ -1,5 +1,10 @@
 2007-02-13     Jannis Pohlmann <[EMAIL PROTECTED]>
 
+       * scripts/xdt-commit: Too much quoting - all input files were
+         treated as one string.
+
+2007-02-13     Jannis Pohlmann <[EMAIL PROTECTED]>
+
        * scripts/xdt-commit: Add more quotes around variables. Use
          "type svn" to check whether Subversion is installed.
 

Modified: xfce4-dev-tools/trunk/scripts/xdt-commit
===================================================================
--- xfce4-dev-tools/trunk/scripts/xdt-commit    2007-02-14 12:17:05 UTC (rev 
24977)
+++ xfce4-dev-tools/trunk/scripts/xdt-commit    2007-02-14 12:18:04 UTC (rev 
24978)
@@ -46,7 +46,7 @@
 ##
 ## Files to be committed
 ##
-FILES="$*"
+FILES=$*
 
 
 ##
@@ -87,7 +87,7 @@
 ## files is empty, ask the user to enter a commit message himself
 ##
 if [ -n "$COMMIT_MSG" ]; then
-  svn commit "$FILES" -m "$COMMIT_MSG"
+  svn commit $FILES -m "$COMMIT_MSG"
 else
-  svn commit "$FILES"
+  svn commit $FILES
 fi

_______________________________________________
Xfce4-commits mailing list
[email protected]
http://foo-projects.org/mailman/listinfo/xfce4-commits

Reply via email to