mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-14 15:02:51 +03:00
Fixed very silly build script bug
This commit is contained in:
parent
1191650b99
commit
ef526bd256
1 changed files with 1 additions and 1 deletions
|
@ -138,7 +138,7 @@ class vcs_svn(vcs):
|
||||||
if rev is None:
|
if rev is None:
|
||||||
revargs = []
|
revargs = []
|
||||||
else:
|
else:
|
||||||
revargs = [' -r ', rev]
|
revargs = ['-r', rev]
|
||||||
for svncommand in (
|
for svncommand in (
|
||||||
'svn revert -R .',
|
'svn revert -R .',
|
||||||
r"svn status | awk '/\?/ {print $2}' | xargs rm -rf"):
|
r"svn status | awk '/\?/ {print $2}' | xargs rm -rf"):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue