Renamed a configuration file

This commit is contained in:
Cédric Belin
2019-04-18 20:06:49 +02:00
parent 07567ba1e0
commit f530671000
3 changed files with 2 additions and 1 deletions

1
.gitattributes vendored
View File

@ -10,6 +10,7 @@
*.txt text *.txt text
*.xml text *.xml text
*.yml text *.yml text
*.yaml text
*.ico binary *.ico binary
*.jpg binary *.jpg binary

View File

@ -43,7 +43,7 @@ class RoboFile extends Tasks {
->addTask($this->taskFilesystemStack() ->addTask($this->taskFilesystemStack()
->copy('CHANGELOG.md', 'doc/about/changelog.md') ->copy('CHANGELOG.md', 'doc/about/changelog.md')
->copy('LICENSE.md', 'doc/about/license.md')) ->copy('LICENSE.md', 'doc/about/license.md'))
->addTask($this->taskExec('mkdocs build --config-file=etc/mkdocs.yml')) ->addTask($this->taskExec('mkdocs build --config-file=etc/mkdocs.yaml'))
->addTask($this->taskFilesystemStack() ->addTask($this->taskFilesystemStack()
->remove(['doc/about/changelog.md', 'doc/about/license.md'])) ->remove(['doc/about/changelog.md', 'doc/about/license.md']))
->run(); ->run();