Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c2d9a670 authored by Mohammed Althaf T's avatar Mohammed Althaf T 😊
Browse files

Browser: move patches to single dir

parent 351a068f
Loading
Loading
Loading
Loading
Loading
+4 −4
Original line number Original line Diff line number Diff line
@@ -86,14 +86,14 @@ patch() {
    cd $chromium_dir/src
    cd $chromium_dir/src
    echo ">> [$(date)] Applying bromite and /e/ patches"
    echo ">> [$(date)] Applying bromite and /e/ patches"


    bromite_patches_list=$(cat "${root_dir}/bromite/build/bromite_patches_list.txt")
    bromite_patches_list=$(cat "${root_dir}/build/bromite_patches_list.txt")
    for file in $bromite_patches_list; do
    for file in $bromite_patches_list; do
        git am -3 --ignore-whitespace "${root_dir}/bromite/build/patches/$file"
        git am -3 --ignore-whitespace "${root_dir}/build/bromite_patches/$file"
    done
    done


    e_patches_list=$(cat "${root_dir}/build/patches_list.txt")
    e_patches_list=$(cat "${root_dir}/build/e_patches_list.txt")
    for file in $e_patches_list; do
    for file in $e_patches_list; do
        git am -3 --ignore-whitespace "${root_dir}/build/patches/$file"
        git am -3 --ignore-whitespace "${root_dir}/build/e_patches/$file"
    done
    done


    # Rename Chrome to Browser
    # Rename Chrome to Browser
Loading