
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: - tools/signing/upload-update_responses-to-staticiforme Changes: ===================================== tools/signing/upload-update_responses-to-staticiforme ===================================== @@ -64,7 +64,7 @@ echo "update_responses_commit: $update_responses_commit" cd "$update_dir" git fetch changed_files="\$(git diff --name-only HEAD $update_responses_commit)" -if ! echo "\$changed_files" | grep -qv "$tbb_version_type" +if echo "\$changed_files" | grep -qv "$tbb_version_type" then echo >&2 "Error: checking out new update_response_commit will changes" echo >&2 "some files outside of the $tbb_version_type directory:" View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/db... -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/db... You're receiving this email because of your account on gitlab.torproject.org.
participants (1)
-
morgan (@morgan)