summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2022-07-20 13:30:56 -0400
committerMarge Bot <ben+marge-bot@smart-cactus.org>2022-07-22 08:18:42 -0400
commit72dfad3dea54c003af88c8a5c0da57ce37216e9f (patch)
tree327fed8f5c1081b1e42871a9b3b24ec80567e349
parentf9ad80255dacc2047981031741caca4b2df45f4e (diff)
downloadhaskell-72dfad3dea54c003af88c8a5c0da57ce37216e9f.tar.gz
upload_ghc_libs: Fix path to documentation
The documentation was moved in a10584e8df9b346cecf700b23187044742ce0b35 but this one occurrence was note updated. Finally closes #21164.
-rwxr-xr-x.gitlab/upload_ghc_libs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab/upload_ghc_libs.py b/.gitlab/upload_ghc_libs.py
index 3812867148..45caa7868c 100755
--- a/.gitlab/upload_ghc_libs.py
+++ b/.gitlab/upload_ghc_libs.py
@@ -137,7 +137,7 @@ def prepare_docs(bindist: Path, pkg: Package):
"""
cabal_file = pkg.path / f'{pkg.name}.cabal'
version = get_version(cabal_file)
- docdir = bindist / 'docs' / 'html' / 'libraries' / (pkg.name + "-" + version)
+ docdir = bindist / 'doc' / 'html' / 'libraries' / (pkg.name + "-" + version)
assert version is not None
# Build the documentation tarball from the bindist documentation