From b8af7a1ea45649f9eeb477128944bf9ae45089fa Mon Sep 17 00:00:00 2001 From: Bert van der Weerd Date: Wed, 19 Jan 2022 13:42:43 +0100 Subject: [PATCH] added a few comments --- scripts/librewolf-patches.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/librewolf-patches.py b/scripts/librewolf-patches.py index 27c75c7..3d9e8d3 100755 --- a/scripts/librewolf-patches.py +++ b/scripts/librewolf-patches.py @@ -110,7 +110,8 @@ def librewolf_patches(): for p in patches: patch(p) - # apply xmas.patch seperately + # apply xmas.patch seperately because not all builders use this repo the same way, and + # we don't want to disturbe those workflows. patch('../patches/xmas.patch') # @@ -119,7 +120,7 @@ def librewolf_patches(): exec('mkdir -p lw') - ##! This is the moment in time we grab the Settings repo HEAD revision + ##! [non-reproducible] This is the moment in time we grab the Settings repo HEAD revision exec('git clone https://gitlab.com/librewolf-community/settings.git') exec("cp -v settings/defaults/pref/local-settings.js lw/") exec("cp -v settings/distribution/policies.json lw/")