chiark
/
gitweb
/
~ianmdlvl
/
fdroidserver.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d7900e3
)
vcs_svn reset back to shell=True
author
Daniel Martí
<mvdan@mvdan.cc>
Fri, 11 Oct 2013 15:08:07 +0000
(17:08 +0200)
committer
Daniel Martí
<mvdan@mvdan.cc>
Fri, 11 Oct 2013 15:08:07 +0000
(17:08 +0200)
fdroidserver/common.py
patch
|
blob
|
history
diff --git
a/fdroidserver/common.py
b/fdroidserver/common.py
index 62bf816fdc7f3ba0d64431de224bfb97a05ad0b1..93166a7867802a5223db1689ef6728b062fdbb14 100644
(file)
--- 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'] +