mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-23 14:52:26 +00:00
make-version.py invokes darcs as "darcs" instead of "realdarcs"
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.
This commit is contained in:
parent
a13ffe2e93
commit
cc87bdf8c3
@ -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]
|
||||
|
Loading…
Reference in New Issue
Block a user