mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 15:00:30 +03:00
fixed exception string in build script
This commit is contained in:
parent
6bf07ade4f
commit
564fd2df79
1 changed files with 2 additions and 1 deletions
3
build.py
3
build.py
|
|
@ -207,7 +207,8 @@ for app in apps:
|
||||||
raise BuildException(("Unexpected version/version code in output"
|
raise BuildException(("Unexpected version/version code in output"
|
||||||
"APK: %s / %s"
|
"APK: %s / %s"
|
||||||
"Expected: %s / %s")
|
"Expected: %s / %s")
|
||||||
) % (version, str(vercode), thisbuild['version'], str(thisbuild['vercode']))
|
% (version, str(vercode), thisbuild['version'], str(thisbuild['vercode']))
|
||||||
|
)
|
||||||
|
|
||||||
# Copy the unsigned apk to our temp directory for further
|
# Copy the unsigned apk to our temp directory for further
|
||||||
# processing...
|
# processing...
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue