Merge pull request #1505 from h3xx/fix-doc-install

Fix missing file during install
This commit is contained in:
Nicolas Hennion 2019-07-17 17:37:06 +02:00 committed by GitHub
commit 84dfb5c626
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
include AUTHORS
include CONTRIBUTING.md
include COPYING
include NEWS
include NEWS.rst
include README.rst
include conf/glances.conf
recursive-include docs *

View File

@ -32,7 +32,7 @@ with open('README.rst', encoding='utf-8') as f:
def get_data_files():
data_files = [
('share/doc/glances', ['AUTHORS', 'COPYING', 'NEWS', 'README.rst',
('share/doc/glances', ['AUTHORS', 'COPYING', 'NEWS.rst', 'README.rst',
'CONTRIBUTING.md', 'conf/glances.conf']),
('share/man/man1', ['docs/man/glances.1'])
]