From patchwork Thu Oct 24 01:56:17 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: D7162: packaging: install documentation to doc/ directory From: phabricator X-Patchwork-Id: 42550 Message-Id: To: Phabricator Cc: mercurial-devel@mercurial-scm.org Date: Thu, 24 Oct 2019 01:56:17 +0000 indygreg created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY The source directory is "doc" and "doc" is used by the WiX installer. I think it makes sense to converge on the canonical path name. While we're here, we also lower the case because we can. (I think lower case names make more sense plus it is more consistent.) This only affects the Inno installer at the moment because it is the only installer using the staging code. REPOSITORY rHG Mercurial REVISION DETAIL https://phab.mercurial-scm.org/D7162 AFFECTED FILES contrib/packaging/hgpackaging/py2exe.py CHANGE DETAILS To: indygreg, #hg-reviewers Cc: mercurial-devel diff --git a/contrib/packaging/hgpackaging/py2exe.py b/contrib/packaging/hgpackaging/py2exe.py --- a/contrib/packaging/hgpackaging/py2exe.py +++ b/contrib/packaging/hgpackaging/py2exe.py @@ -41,8 +41,8 @@ ('dist/Microsoft.VC*.CRT.manifest', './'), ('dist/msvc*.dll', './'), ('dist/python*.dll', './'), - ('doc/*.html', 'Docs/'), - ('doc/style.css', 'Docs/'), + ('doc/*.html', 'doc/'), + ('doc/style.css', 'doc/'), ('mercurial/help/**/*.txt', 'help/'), ('mercurial/default.d/*.rc', 'default.d/'), ('mercurial/locale/**/*', 'locale/'),