Pier Angelo Vendrame pushed to branch firefox-android-115.2.1-13.5-1 at The Tor Project / Applications / firefox-android
Commits: f0ca6b33 by Pier Angelo Vendrame at 2023-10-31T14:18:09+01:00 fixup! Modify build system
Bug 42201: Sign all the channels of local builds
- - - - -
1 changed file:
- fenix/tools/tba-sign-devbuilds.sh
Changes:
===================================== fenix/tools/tba-sign-devbuilds.sh ===================================== @@ -41,8 +41,10 @@ sign () { echo "Signed $out" }
-for apk in app/build/outputs/apk/fenix/release/*-unsigned.apk; do - sign "$apk" +for channel in app/build/outputs/apk/fenix/*; do + for apk in $channel/*-unsigned.apk; do + sign "$apk" + done done
rm -rf "$tmpdir"
View it on GitLab: https://gitlab.torproject.org/tpo/applications/firefox-android/-/commit/f0ca...