From 603aa3411453df1101451ddbbf726d24fc94e84f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Daniel=20Mart=C3=AD?= Date: Fri, 11 Oct 2013 17:08:07 +0200 Subject: [PATCH] vcs_svn reset back to shell=True --- fdroidserver/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fdroidserver/common.py b/fdroidserver/common.py index 62bf816f..93166a78 100644 --- a/fdroidserver/common.py +++ b/fdroidserver/common.py @@ -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'] + -- 2.30.2