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

[tor-commits] [Git][tpo/applications/tor-browser-build][main] Bug 41168: Fix check in update_responses deploy script



Title: GitLab

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

Commits:

  • db976d61
    by Nicolas Vigier at 2024-08-22T19:01:47+00:00
    Bug 41168: Fix check in update_responses deploy script
    
    The check for modified files from other channels was inverted.
    

1 changed file:

Changes:

  • tools/signing/upload-update_responses-to-staticiforme
    ... ... @@ -64,7 +64,7 @@ echo "update_responses_commit: $update_responses_commit"
    64 64
     cd "$update_dir"
    
    65 65
     git fetch
    
    66 66
     changed_files="\$(git diff --name-only HEAD $update_responses_commit)"
    
    67
    -if ! echo "\$changed_files" | grep -qv "$tbb_version_type"
    
    67
    +if echo "\$changed_files" | grep -qv "$tbb_version_type"
    
    68 68
     then
    
    69 69
       echo >&2 "Error: checking out new update_response_commit will changes"
    
    70 70
       echo >&2 "some files outside of the $tbb_version_type directory:"
    

  • _______________________________________________
    tor-commits mailing list
    tor-commits@xxxxxxxxxxxxxxxxxxxx
    https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits