-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create required dirs #282
Create required dirs #282
Conversation
Add prerequisites for `make sp-run` When I run `make run` I get two errors, missing _build dir and missing .doctrees dir.
As per #276 this is an issue with an upstream package, Additionally, there is currently a PR open in that project to fix the issue. |
The sphinx-docs-starter-pack/Makefile.sp Line 72 in 5bd65aa
But, I will close it and use the workaround. |
Of course it does, sorry! I was not paying enough attention. |
No worries, I had to look up the flag to make sure that it was portable across operating systems. I will use |
That's a good idea. I saw your CODA issue and that will be really helpful. Just be aware there will be some significant changes to the starter pack soon, as we'll be moving to the Though I think I'll pin everything and tag this main branch before we move to that version, so that there'll be a permanent version of this iteration of the starter pack here (and hopefully the autobuild issue will be resolved by then). |
Cheers, I like the workflow described in that branch. I will try that out now! |
Add prerequisites for
make sp-run
When I run
make run
I get two errors, missing _build dir and missing .doctrees dir.I have gotten into the habit of running
make html
first and thenmake run
, but having the dirs as prereqs formake run
seems more appropriate.