mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 15:00:30 +03:00
nightly: fail if *-nightly git repo is not publicly available
This commit is contained in:
parent
15bd7057f0
commit
c2567d71d1
3 changed files with 38 additions and 9 deletions
|
|
@ -2680,9 +2680,9 @@ def get_native_code(apkfile):
|
|||
|
||||
|
||||
class PopenResult:
|
||||
def __init__(self):
|
||||
self.returncode = None
|
||||
self.output = None
|
||||
def __init__(self, returncode=None, output=None):
|
||||
self.returncode = returncode
|
||||
self.output = output
|
||||
|
||||
|
||||
def SdkToolsPopen(commands, cwd=None, output=True):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue