[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[tor-commits] [Git][tpo/applications/tor-browser][tor-browser-140.2.0esr-15.0-1] fixup! [android] Modify build system



Title: GitLab

Pier Angelo Vendrame pushed to branch tor-browser-140.2.0esr-15.0-1 at The Tor Project / Applications / Tor Browser

Commits:

  • 2e520528
    by Pier Angelo Vendrame at 2025-08-14T16:20:38+02:00
    fixup! [android] Modify build system
    
    TB 43799: Check we passed the objdir to tba-sign-devbuilds.sh.
    
    When we initially created tba-sign-devbuilds.sh, it was easy to find
    the APKs. However, after Bug 1951190, they are inside the obj-*
    directory, which can be customized in mozconfig.
    
    So, the easiest way to deal with this, was to ask the caller to provide
    that obj directory. Not passing it will very likely make the script
    fail, so with this commit we added a check to output a more meaningful
    error message.
    

1 changed file:

Changes:

  • mobile/android/fenix/tools/tba-sign-devbuilds.sh
    ... ... @@ -3,6 +3,10 @@
    3 3
     cd "$(dirname $(realpath "$0"))/.."
    
    4 4
     
    
    5 5
     objdir=$1
    
    6
    +if [ -z "$objdir" ]; then
    
    7
    +	echo "Usage $0 objdir"
    
    8
    +	exit 1
    
    9
    +fi
    
    6 10
     
    
    7 11
     if [ -z "$APKSIGNER_ARGS" ]; then
    
    8 12
     	if [ -z "$QA_KEY" ]; then
    

  • _______________________________________________
    tor-commits mailing list -- tor-commits@xxxxxxxxxxxxxxxxxxxx
    To unsubscribe send an email to tor-commits-leave@xxxxxxxxxxxxxxxxxxxx