mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-16 16:02:33 +03:00
vcs_svn reset back to shell=True
This commit is contained in:
parent
d7900e3c4b
commit
603aa34114
1 changed files with 1 additions and 1 deletions
|
@ -305,7 +305,7 @@ class vcs_svn(vcs):
|
|||
for svncommand in (
|
||||
'svn revert -R .',
|
||||
r"svn status | awk '/\?/ {print $2}' | xargs rm -rf"):
|
||||
if subprocess.call(svncommand, cwd=self.local) != 0:
|
||||
if subprocess.call(svncommand, cwd=self.local, shell=True) != 0:
|
||||
raise VCSException("Svn reset ({0}) failed in {1}".format(svncommand, self.local))
|
||||
if not self.refreshed:
|
||||
if subprocess.call(['svn', 'update'] +
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue