diff options
author | Johannes Wienke | 2025-02-09 23:07:49 +0100 |
---|---|---|
committer | Johannes Wienke | 2025-02-09 23:07:49 +0100 |
commit | a6598b6029a89f5c80169f637c1349d02b3b83c0 (patch) | |
tree | 2ad4ad9629e7242c479f0b00b3e604eccbac47ff /PKGBUILD | |
parent | f90e7d0c1560be3742f84465156783467ae91627 (diff) | |
download | aur-a6598b6029a89f5c80169f637c1349d02b3b83c0.tar.gz |
Don't include .doctress folder in HTML docs
This is a temp folder from the build.
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2,7 +2,7 @@ pkgname=autosuspend pkgver=7.1.0 -pkgrel=3 +pkgrel=4 pkgdesc="A daemon to suspend and wake up a system based on configurable checks" arch=(any) url="https://github.com/languitar/autosuspend" @@ -40,6 +40,7 @@ build() { export PYTHONPATH=$(pwd)/src sphinx-build -a -b html doc/source/ doc/build/html sphinx-build -a -b man doc/source/ doc/build/man + rm -rf doc/build/html/.doctrees } package() { |