You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running the script in a local git repo with all MD files stored in docs/I get the error raise InvalidGitRepositoryError(epath)
To solve this, I added search_parent_directories=True to the Repo object,
so that line 247 in markdown-to-confluence.py is now: repo = git.Repo(args.git, search_parent_directories=True)
This seems to avoid the error, but now the script tries this: Attempting to deploy docs/__pycache__/convert.cpython-39.pyc
which results in Skipping docs/__pycache__/convert.cpython-39.pyc since it's not a supported format.
Do you have any hint what do do?
The text was updated successfully, but these errors were encountered:
When running the script in a local git repo with all MD files stored in
docs/
I get the errorraise InvalidGitRepositoryError(epath)
To solve this, I added
search_parent_directories=True
to theRepo
object,so that line 247 in
markdown-to-confluence.py
is now:repo = git.Repo(args.git, search_parent_directories=True)
This seems to avoid the error, but now the script tries this:
Attempting to deploy docs/__pycache__/convert.cpython-39.pyc
which results in
Skipping docs/__pycache__/convert.cpython-39.pyc since it's not a supported format.
Do you have any hint what do do?
The text was updated successfully, but these errors were encountered: