ma1 pushed to branch main at The Tor Project / Applications / tor-browser-build

Commits:

1 changed file:

Changes:

  • tools/signing/publish-github.mullvadbrowser
    ... ... @@ -7,9 +7,10 @@ function showconf {
    7 7
     
    
    8 8
     # we may want to add a suffix to the release tag, e.g. rc1
    
    9 9
     mbrtag_suffix="$1"
    
    10
    -github_token=$(showconf release buildconf/devmole_auth_token2 2>/dev/null)
    
    10
    +token_var="buildconf/devmole_auth_token"
    
    11
    +github_token=$(showconf release $token_var 2>/dev/null)
    
    11 12
     if ! [[ $github_token ]]; then
    
    12
    -  echo >&2 "Github token (buildconf/devmole_auth_token) missing!"
    
    13
    +  echo >&2 "Github token ($token_var) missing!"
    
    13 14
       exit 1
    
    14 15
     fi
    
    15 16