From d016b84349f8c1bacbe67f3723181528dbffcf2d Mon Sep 17 00:00:00 2001 From: commitay Date: Sun, 28 Jan 2018 08:35:43 +1000 Subject: [PATCH] sync_templates_and_ci: increase install conditional for font repo (#42975) * sync_templates_and_ci: increase install conditional for font repo [skip ci] * Update sync_templates_and_ci --- developer/bin/sync_templates_and_ci | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/developer/bin/sync_templates_and_ci b/developer/bin/sync_templates_and_ci index cfad84f7a5..72c5aafcf9 100755 --- a/developer/bin/sync_templates_and_ci +++ b/developer/bin/sync_templates_and_ci @@ -33,6 +33,11 @@ function copy_templates_and_ci { repo_name="${1}" rsync --archive --delete "${main_repo_dir}"/{.editorconfig,.gitattributes,.github,.gitignore,.travis.yml,ci,CODE_OF_CONDUCT.md} '.' /usr/bin/sed -i '' -E "s:homebrew-cask/(pulls|issues):${repo_name}/\1:" '.github/PULL_REQUEST_TEMPLATE.md' # PULL_REQUEST_TEMPLATE has repo-specific links + + # increase script.sh install cap for fonts repo + if [[ "${repo_name}" == 'homebrew-fonts' ]]; then + /usr/bin/sed -i '' -e 's:-le 3:-le 15:' -e 's:than 3 Casks:than 15 Casks:' 'ci/travis/script.sh' + fi } function push_changes {