Resolve merge conflicts

This commit is contained in:
Griatch 2020-06-13 10:45:46 +02:00
commit 23569645a9
3 changed files with 12 additions and 8 deletions

3
.gitignore vendored
View file

@ -47,3 +47,6 @@ nosetests.xml
# Windows files generated during setup # Windows files generated during setup
evennia.bat evennia.bat
twistd.bat twistd.bat
# never commit docs/build
docs/build

View file

@ -12,13 +12,15 @@ fi
# get the deployment branch # get the deployment branch
git checkout gh-pages git checkout gh-pages
# at this point we should be inside the docs/ folder of the gh-pages branch,
# with the build/ directory available since this is not in git
mv build .. # remove all but the build dir
# the docs/ folder is named the same in both branches so we need to step out of ls -Q | grep -v build | xargs rm -Rf
# it to not confuse what's what.
cd .. mv build/html/versions/* .
rm -Rf docs/* # docs/build is in .gitignore so will not be included
cp -Rf build/html/versions/* docs/ git add .
# TODO automate this? # TODO automate this?
ln -s 1.0-dev docs/latest ln -s 1.0-dev docs/latest

View file

@ -143,8 +143,7 @@ smv_tag_whitelist = r"^$"
# which branches to include in multi-version docs # which branches to include in multi-version docs
# - master, develop and vX.X branches # - master, develop and vX.X branches
smv_branch_whitelist = r"^master$|^develop$|^v[0-9\.]+?$" smv_branch_whitelist = r"^master$|^develop$|^v[0-9\.]+?$"
# smv_branch_whitelist = r"^static-file-docs$|^static-file-dev$" smv_outputdir_format = "{config.release}"
smv_outputdir_format = "versions" + sep + "{config.release}"
# recommonmark # recommonmark