| Index: build.py |
| =================================================================== |
| --- a/build.py |
| +++ b/build.py |
| @@ -82,6 +82,10 @@ |
| manifest["moz_app_version"], manifest["buildid"]) |
| target_apk_path = os.path.join(DIST_PATH, target_apk_name) |
| shutil.copyfile(apk_path, target_apk_path) |
| + |
| + target_manifest_path = re.sub(r".apk$", ".json", target_apk_path) |
|
René Jeschke
2015/11/13 12:50:46
`re` is not imported yet.
Felix Dahlke
2015/11/13 12:53:30
Damn, that's what I get for not doing a proper int
|
| + shutil.copyfile(manifest_path, target_manifest_path) |
| + |
| return target_apk_path |
| def sign(apk_path, key_store, key_name): |