]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
make-version.py invokes darcs as "darcs" instead of "realdarcs"
authorZooko O'Whielacronx <zooko@zooko.com>
Fri, 29 Jun 2007 21:22:50 +0000 (14:22 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Fri, 29 Jun 2007 21:22:50 +0000 (14:22 -0700)
Some other people might use the official Windows build of darcs, and people who use my cygwin wrapper for darcs will be compatible with this patch as long as they use the latest version of the wrapper.

misc/make-version.py

index 41d221a1ebc08111b18e8bf8f30583835f39cb47..36da171786837c85d0b1b4cd5ecf8bc80c434066 100644 (file)
@@ -69,10 +69,7 @@ def update():
             return 0
         print "no _darcs/ but no version.py either: how did you get this tree?"
         return 0
-    darcs = 'darcs'
-    if sys.platform == 'win32':
-        darcs = 'realdarcs'
-    cmd = [darcs, "changes", "--from-tag=^allmydata-tahoe", "--xml-output"]
+    cmd = ["darcs", "changes", "--from-tag=^allmydata-tahoe", "--xml-output"]
     try:
         p = Popen(cmd, stdout=PIPE)
         output = p.communicate()[0]