mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-16 07:52:35 +03:00
Fix FDroidPopen refactor typo
This commit is contained in:
parent
52c3bf46a5
commit
e8fb3a143e
1 changed files with 2 additions and 2 deletions
|
@ -591,10 +591,10 @@ class vcs_git(vcs):
|
||||||
|
|
||||||
def latesttags(self, alltags, number):
|
def latesttags(self, alltags, number):
|
||||||
self.checkrepo()
|
self.checkrepo()
|
||||||
p = FDroidPopen(['echo "' + '\n'.join(alltags, output=False) + '" | '
|
p = FDroidPopen(['echo "' + '\n'.join(alltags) + '" | '
|
||||||
+ 'xargs -I@ git log --format=format:"%at @%n" -1 @ | '
|
+ 'xargs -I@ git log --format=format:"%at @%n" -1 @ | '
|
||||||
+ 'sort -n | awk \'{print $2}\''],
|
+ 'sort -n | awk \'{print $2}\''],
|
||||||
cwd=self.local, shell=True)
|
cwd=self.local, shell=True, output=False)
|
||||||
return p.output.splitlines()[-number:]
|
return p.output.splitlines()[-number:]
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue