]> git.ipfire.org Git - people/stevee/pakfire.git/blob - tools/quality-agent/quality-agent.d/090-man-pages
Bump version 0.9.9.
[people/stevee/pakfire.git] / tools / quality-agent / quality-agent.d / 090-man-pages
1 #!/bin/bash
2
3 . $(dirname ${0})/qa-include
4
5 DESC="Decompressing man-pages..."
6
7 function check() {
8 for file in $(find ${BUILDROOT}/usr/share/man -type f 2>/dev/null); do
9 log DEBUG " Processing: ${file}"
10 if [[ ${file} =~ \.gz$ ]]; then
11 gzip -d ${file}
12 fi
13 done
14 }
15
16 run
17