Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
Fix taskcluster try 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Randall Barker committed Sep 25, 2018
1 parent 068abae commit 4aa9dab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/taskcluster/sign_apk.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ def main(name, argv):

# Sign APKs
for apk in glob.glob(build_output_path + "/*/*/*-aligned.apk"):
target = apk.replace('unsigned', 'signed')
target = apk.replace('-unsigned-', '-signed-')
if not release:
target = target.replace('release', 'staging')
target = target.replace('-release-', '-staging-')
print "Signing", apk
print "Target ", target
print subprocess.check_output([
Expand Down

0 comments on commit 4aa9dab

Please sign in to comment.