Makes subversion module --check fail when modified files are in repository.
This commit is contained in:
parent
e36d2f0bd0
commit
4bd04c299b
1 changed files with 2 additions and 0 deletions
|
@ -285,6 +285,8 @@ def main():
|
|||
# positives. Need to switch before revert to ensure we are reverting to
|
||||
# correct repo.
|
||||
if module.check_mode or not update:
|
||||
if svn.has_local_mods() and not force:
|
||||
module.fail_json(msg="ERROR: modified files exist in the repository.")
|
||||
check, before, after = svn.needs_update()
|
||||
module.exit_json(changed=check, before=before, after=after)
|
||||
before = svn.get_revision()
|
||||
|
|
Loading…
Reference in a new issue