diff options
author | Ben Gamari <ben@smart-cactus.org> | 2022-07-18 09:44:35 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2022-07-20 22:30:53 -0400 |
commit | ed6aabc48a04424b2a68bdde964445b58cedd05b (patch) | |
tree | d04617224fb217150559adf79ecb32db7e0e2840 | |
parent | b889f123bcb3c5a70f19389297109d0a48406149 (diff) | |
download | haskell-ed6aabc48a04424b2a68bdde964445b58cedd05b.tar.gz |
upload_ghc_libs: Fix path to documentation
-rwxr-xr-x | .gitlab/upload_ghc_libs.py | 2 |
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 |