mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-26 22:51:23 -07:00
Make force parameter work for export operation
The default is changed from 'yes' to 'no' to follow subversion behavior (ie, requiring explicit confirmation to erase a existing repository). Since that was not working before cf #370 and since the option was ignored before and unused, this should be safe to change.
This commit is contained in:
parent
9803938663
commit
e1194116b2
1 changed files with 8 additions and 3 deletions
|
@ -123,7 +123,12 @@ class Subversion(object):
|
||||||
|
|
||||||
def export(self, force=False):
|
def export(self, force=False):
|
||||||
'''Export svn repo to directory'''
|
'''Export svn repo to directory'''
|
||||||
self._exec(["export", "-r", self.revision, self.repo, self.dest])
|
cmd = ["export"]
|
||||||
|
if force:
|
||||||
|
cmd.append("--force")
|
||||||
|
cmd.extend(["-r", self.revision, self.repo, self.dest])
|
||||||
|
|
||||||
|
self._exec(cmd)
|
||||||
|
|
||||||
def switch(self):
|
def switch(self):
|
||||||
'''Change working directory's repo.'''
|
'''Change working directory's repo.'''
|
||||||
|
@ -173,7 +178,7 @@ def main():
|
||||||
dest=dict(required=True),
|
dest=dict(required=True),
|
||||||
repo=dict(required=True, aliases=['name', 'repository']),
|
repo=dict(required=True, aliases=['name', 'repository']),
|
||||||
revision=dict(default='HEAD', aliases=['rev', 'version']),
|
revision=dict(default='HEAD', aliases=['rev', 'version']),
|
||||||
force=dict(default='yes', type='bool'),
|
force=dict(default='no', type='bool'),
|
||||||
username=dict(required=False),
|
username=dict(required=False),
|
||||||
password=dict(required=False),
|
password=dict(required=False),
|
||||||
executable=dict(default=None),
|
executable=dict(default=None),
|
||||||
|
@ -202,7 +207,7 @@ def main():
|
||||||
if not export:
|
if not export:
|
||||||
svn.checkout()
|
svn.checkout()
|
||||||
else:
|
else:
|
||||||
svn.export()
|
svn.export(force=force)
|
||||||
elif os.path.exists("%s/.svn" % (dest, )):
|
elif os.path.exists("%s/.svn" % (dest, )):
|
||||||
# Order matters. Need to get local mods before switch to avoid false
|
# Order matters. Need to get local mods before switch to avoid false
|
||||||
# positives. Need to switch before revert to ensure we are reverting to
|
# positives. Need to switch before revert to ensure we are reverting to
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue