diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2022-06-27 22:27:11 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-07-04 17:56:30 -0400 |
commit | 418afaf11b76339deb29b1717790e3749be89afc (patch) | |
tree | 7d695e2d9027ca00579e558e21c5b9dec96c4856 | |
parent | 74f3867dbc77cad216444ed1e12d095feb1ced92 (diff) | |
download | haskell-418afaf11b76339deb29b1717790e3749be89afc.tar.gz |
upload-docs: propagate publish correctly in upload_sdist
-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 8b56cc4882..a3f3084891 100755 --- a/.gitlab/upload_ghc_libs.py +++ b/.gitlab/upload_ghc_libs.py @@ -121,7 +121,7 @@ def upload_pkg_sdist(sdist : Path, pkg : Package, publish : bool): if stamp.is_file(): return print(f'Uploading package {pkg.name}...') - cabal_upload(sdist) + cabal_upload(sdist, publish) stamp.write_text('') def get_version(cabal_file: Path) -> Optional[str]: |