Automatically remove duplicate extensions

This commit is contained in:
Manuel Thalmann 2023-04-05 09:55:48 +02:00
parent 3c101093af
commit 287dd7dc25

View file

@ -39,6 +39,17 @@ else
chmod -R a+rx "$EXTENSION_DIR";
chmod -R u+w "$EXTENSION_DIR";
mkdir -p "$EXTENSION_POLICY_DIR";
crxProperty="external_crx";
find "$EXTENSION_POLICY_DIR" -name "*.json" -print0 |
while IFS= read -r -d "" file
do
if [ "$(cat "$file" | jq -r ".$crxProperty")" == "$destination" ]
then
rm "$file";
fi;
done;
{
echo "{";
echo ' "external_crx": "'"$destination"'",';