From 63db828a28a82b677e68f975a4e3162b8a8bf461 Mon Sep 17 00:00:00 2001 From: Mirko Galimberti Date: Sun, 17 Dec 2023 18:55:49 +0100 Subject: [PATCH] Change updated recipes script --- .ci/rebuild_updated_recipes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/rebuild_updated_recipes.py b/.ci/rebuild_updated_recipes.py index 292f4500..d62ff099 100644 --- a/.ci/rebuild_updated_recipes.py +++ b/.ci/rebuild_updated_recipes.py @@ -13,7 +13,7 @@ from constants import CORE_RECIPES, BROKEN_RECIPES -def modified_recipes(branch="origin/master"): +def modified_recipes(branch="master"): """ Returns a set of modified recipes between the current branch and the one in param. @@ -21,7 +21,7 @@ def modified_recipes(branch="origin/master"): # using the contrib version on purpose rather than sh.git, since it comes # with a bunch of fixes, e.g. disabled TTY, see: # https://stackoverflow.com/a/20128598/185510 - sh.contrib.git.fetch("origin", "master") + # sh.contrib.git.fetch("origin", "master") git_diff = sh.contrib.git.diff("--name-only", "--diff-filter=d", branch) recipes = set() for file_path in git_diff: