1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-11-04 14:30:11 +01:00

Fixed very silly build script bug

This commit is contained in:
Ciaran Gultnieks 2011-10-02 12:01:43 +01:00
parent 1191650b99
commit ef526bd256

View File

@ -138,7 +138,7 @@ class vcs_svn(vcs):
if rev is None:
revargs = []
else:
revargs = [' -r ', rev]
revargs = ['-r', rev]
for svncommand in (
'svn revert -R .',
r"svn status | awk '/\?/ {print $2}' | xargs rm -rf"):