summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2009-11-10 21:04:18 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2009-11-10 21:04:18 +0000
commit8aa1123c42a6d3a94ef34ab74ccb1f148650c929 (patch)
treeb15cbda6226a23451bac9183f6c4b7e13853cf3b
parent139bd461a0a8e0f28342cbccd25c1ee92c192148 (diff)
downloadATCD-8aa1123c42a6d3a94ef34ab74ccb1f148650c929.tar.gz
Tue Nov 10 21:03:25 UTC 2009 William R. Otte <wotte@dre.vanderbilt.edu>
-rw-r--r--ACE/ChangeLog7
-rwxr-xr-xACE/bin/sets-manager.py9
2 files changed, 15 insertions, 1 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index 87bfb14bed4..c00b9514337 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,3 +1,10 @@
+Tue Nov 10 21:03:25 UTC 2009 William R. Otte <wotte@dre.vanderbilt.edu>
+
+ * bin/sets-manager.py:
+
+ bugfix for windows. note that cleaning up the temp directory doesn't
+ work on windows, that will need to be done by hand.
+
Tue Nov 10 12:17:33 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/fuzz.pl:
diff --git a/ACE/bin/sets-manager.py b/ACE/bin/sets-manager.py
index 27e47906abe..c3dc10d842e 100755
--- a/ACE/bin/sets-manager.py
+++ b/ACE/bin/sets-manager.py
@@ -63,12 +63,19 @@ def svn_copy (source, dest):
execute (command)
def svn_propset (path, prop, value):
+ temp = open ("sets_manager_props.tmp", 'w')
+ temp.write (value)
+ temp.close ()
+
command = " ".join ([opts.svn,
"propset",
prop,
- "'" + value + "'",
+ "-F sets_manager_props.tmp",
path])
execute (command)
+
+ os.unlink ("sets_manager_props.tmp")
+
def svn_mkdir (path):
command = " ".join ([opts.svn,