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

morgan (@morgan) git at gitlab.torproject.org
Thu Aug 22 19:04:58 UTC 2024



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/db976d61c809fb8f52425e9f428d9aad61cf4fb2

-- 
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/db976d61c809fb8f52425e9f428d9aad61cf4fb2
You're receiving this email because of your account on gitlab.torproject.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.torproject.org/pipermail/tor-commits/attachments/20240822/92b6b3c7/attachment-0001.htm>


More information about the tor-commits mailing list