diff --git a/git_cache.py b/git_cache.py index 2bcc139a8..aedac25c5 100755 --- a/git_cache.py +++ b/git_cache.py @@ -26,6 +26,8 @@ import subcommand # Analogous to gc.autopacklimit git config. GC_AUTOPACKLIMIT = 50 +if sys.platform.startswith('win'): + GC_AUTOPACKLIMIT = 9 GIT_CACHE_CORRUPT_MESSAGE = 'WARNING: The Git cache is corrupt.' diff --git a/recipes/recipe_modules/bot_update/api.py b/recipes/recipe_modules/bot_update/api.py index 40eaa1b34..7454c7e03 100644 --- a/recipes/recipe_modules/bot_update/api.py +++ b/recipes/recipe_modules/bot_update/api.py @@ -2,6 +2,7 @@ # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. + """Recipe module to ensure a checkout is consistent on a bot.""" from recipe_engine import recipe_api