build-pdf: add the option to build a single language

pull/23/head
Sebastiaan Speck 2023-12-19 17:37:18 +01:00 committed by K.B.Dharun Krishna
parent ebab29116d
commit 2397113710
1 changed files with 18 additions and 16 deletions

View File

@ -21,22 +21,24 @@ function process_page {
}
function main {
type="$1"
case $type in
"all")
pageDirs=(../../pages*)
;;
*)
changedFiles=$(git diff-tree --no-commit-id --name-only -r "$(git rev-parse HEAD)")
changedPageDirs=$(echo "$changedFiles" | awk -F/ '/^(pages[^\/]+|pages)\//{print $1}' | sort -u)
if [ -z "$changedPageDirs" ]; then
pageDirs=()
else
mapfile -t pageDirs <<< "$changedPageDirs"
fi
;;
esac
languageId="$1"
if [ -z "$languageId" ]; then
changedFiles=$(git diff-tree --no-commit-id --name-only -r "$(git rev-parse HEAD)")
changedPageDirs=$(echo "$changedFiles" | awk -F/ '/^(pages[^\/]+|pages)\//{print $1}' | sort -u)
if [ -z "$changedPageDirs" ]; then
pageDirs=()
else
mapfile -t pageDirs <<< "$changedPageDirs"
fi
else
case $languageId in
"all")
pageDirs=(../../pages*)
;;
*)
pageDirs=("pages.${languageId}")
esac
fi
for pageDir in "${pageDirs[@]}"; do
process_page "../../${pageDir}"