1#!/bin/sh 2# Copyright (c) 2018 The Chromium Authors. All rights reserved. 3# Use of this source code is governed by a BSD-style license that can be 4# found in the LICENSE file. 5 6treeroot="$(dirname "$0")/.." 7cd "${treeroot}" 8 9echo "Applying brkitr.patch" 10patch -p1 < flutter/brkitr.patch || { echo "failed to patch" >&2; exit 1; } 11