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 3a5f9e9 commit dfb4c79Copy full SHA for dfb4c79
duties.py
@@ -123,7 +123,11 @@ def docs_deploy(ctx: Context) -> None:
123
ctx.run(lambda: False, title="Not deploying docs without Material for MkDocs Insiders!")
124
origin = ctx.run("git config --get remote.origin.url", silent=True)
125
if "pawamoy-insiders/griffe-autodocstringstyle" in origin:
126
- ctx.run("git remote add upstream git@github.com:mkdocstrings/griffe-autodocstringstyle", silent=True, nofail=True)
+ ctx.run(
127
+ "git remote add upstream git@github.com:mkdocstrings/griffe-autodocstringstyle",
128
+ silent=True,
129
+ nofail=True,
130
+ )
131
ctx.run(
132
tools.mkdocs.gh_deploy(remote_name="upstream", force=True),
133
title="Deploying documentation",
0 commit comments