summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJannis Pohlmann <jannis@xfce.org>2007-02-14 12:18:04 +0000
committerJannis Pohlmann <jannis@xfce.org>2007-02-14 12:18:04 +0000
commit1959ca88272931d1ab79dabaed7997c63ca866ab (patch)
tree93b15949bf4bf72f28902ecba8d42934cb99248b
parent351c61ec2856a44456eba553c73e2c5f45ef2a49 (diff)
downloadxfce4-dev-tools-1959ca88272931d1ab79dabaed7997c63ca866ab.tar.gz
* scripts/xdt-commit: Too much quoting - all input files were
treated as one string. (Old svn revision: 24978)
-rw-r--r--ChangeLog5
-rwxr-xr-xscripts/xdt-commit6
2 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 08b58c5..eb64f42 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2007-02-13 Jannis Pohlmann <jannis@xfce.org>
+ * scripts/xdt-commit: Too much quoting - all input files were
+ treated as one string.
+
+2007-02-13 Jannis Pohlmann <jannis@xfce.org>
+
* scripts/xdt-commit: Add more quotes around variables. Use
"type svn" to check whether Subversion is installed.
diff --git a/scripts/xdt-commit b/scripts/xdt-commit
index cce9164..cab95ae 100755
--- a/scripts/xdt-commit
+++ b/scripts/xdt-commit
@@ -46,7 +46,7 @@ fi
##
## Files to be committed
##
-FILES="$*"
+FILES=$*
##
@@ -87,7 +87,7 @@ done
## 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