Changeset 1257 in tailor


Ignore:
Timestamp:
08/20/06 02:44:25 (7 years ago)
Author:
elb@…
Hash name:
20060820004425-8115f-1ee963e55defdfbba7a96f313ca677a98537ceac
Message:

Use recursive drop for monotone
Tailor seems to expect that dropping a non-empty directory will
succeed; by all indications it expects this drop to be recursive.
Therefore, use "mtn drop --recursive" instead of "mtn drop".

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vcpx/repository/monotone.py

    r1231 r1257  
    799799        """ 
    800800 
    801         cmd = self.repository.command("drop") 
     801        cmd = self.repository.command("drop", "--recursive") 
    802802        drop = ExternalCommand(cwd=self.repository.basedir, command=cmd) 
    803803        dum, error = drop.execute(names, stderr=PIPE) 
Note: See TracChangeset for help on using the changeset viewer.