Merge pull request #504 from rtilder/app-signing-server
Be most explicit about mode when opening files
This commit is contained in:
Коммит
c78b989e69
|
@ -38,7 +38,7 @@ def sign_app(src, dest):
|
|||
|
||||
# Extract necessary info from the archive
|
||||
try:
|
||||
jar = JarExtractor(storage.open(src), storage.open(dest))
|
||||
jar = JarExtractor(storage.open(src, 'r'), storage.open(dest, 'w'))
|
||||
except:
|
||||
log.error("Archive extraction failed. Bad archive?", exc_info=True)
|
||||
raise SigningError("Archive extraction failed. Bad archive?")
|
||||
|
|
Загрузка…
Ссылка в новой задаче