Skip to content

Commit

Permalink
chore: Disallow override in docs-deploy duty to allow passing -cnone …
Browse files Browse the repository at this point in the history
…(because of PyTermGUI issue)
  • Loading branch information
pawamoy committed Jun 13, 2024
1 parent 5f70186 commit e458ffc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion duties.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def docs_deploy(ctx: Context) -> None:
with material_insiders() as insiders:
if not insiders:
ctx.run(lambda: False, title="Not deploying docs without Material for MkDocs Insiders!")
origin = ctx.run("git config --get remote.origin.url", silent=True)
origin = ctx.run("git config --get remote.origin.url", silent=True, allow_overrides=False)
if "pawamoy-insiders/markdown-exec" in origin:
ctx.run("git remote add upstream git@github.com:pawamoy/markdown-exec", silent=True, nofail=True)
ctx.run(
Expand Down

0 comments on commit e458ffc

Please # to comment.