mirror of
https://github.com/evennia/evennia.git
synced 2026-03-21 07:16:31 +01:00
Resolve merge conflicts
This commit is contained in:
commit
ce18d714de
3 changed files with 12 additions and 8 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -47,3 +47,6 @@ nosetests.xml
|
|||
# Windows files generated during setup
|
||||
evennia.bat
|
||||
twistd.bat
|
||||
|
||||
# never commit docs/build
|
||||
docs/build
|
||||
|
|
|
|||
|
|
@ -12,13 +12,15 @@ fi
|
|||
|
||||
# get the deployment branch
|
||||
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 ..
|
||||
# the docs/ folder is named the same in both branches so we need to step out of
|
||||
# it to not confuse what's what.
|
||||
cd ..
|
||||
rm -Rf docs/*
|
||||
cp -Rf build/html/versions/* docs/
|
||||
# remove all but the build dir
|
||||
ls -Q | grep -v build | xargs rm -Rf
|
||||
|
||||
mv build/html/versions/* .
|
||||
# docs/build is in .gitignore so will not be included
|
||||
git add .
|
||||
|
||||
# TODO automate this?
|
||||
ln -s 1.0-dev docs/latest
|
||||
|
|
|
|||
|
|
@ -143,8 +143,7 @@ smv_tag_whitelist = r"^$"
|
|||
# which branches to include in multi-version docs
|
||||
# - master, develop and vX.X branches
|
||||
smv_branch_whitelist = r"^master$|^develop$|^v[0-9\.]+?$"
|
||||
# smv_branch_whitelist = r"^static-file-docs$|^static-file-dev$"
|
||||
smv_outputdir_format = "versions" + sep + "{config.release}"
|
||||
smv_outputdir_format = "{config.release}"
|
||||
|
||||
|
||||
# recommonmark
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue