We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd601f5 commit cffc54eCopy full SHA for cffc54e
scripts/util.py
@@ -131,6 +131,8 @@ def require_clean_and_up_to_date_demo_repo(demo_path: Path) -> None:
131
try:
132
with work_in(demo_path):
133
git("fetch")
134
+ git("fetch", "origin", f"{DEMO.main_branch}:{DEMO.main_branch}")
135
+ git("fetch", "origin", f"{DEMO.develop_branch}:{DEMO.develop_branch}")
136
git("status", "--porcelain")
137
validate_is_synced_ancestor(ancestor=DEMO.main_branch, descendent=DEMO.develop_branch)
138
except Exception as e:
0 commit comments