diff options
author | Philip Hands <phil@hands.com> | 2017-01-25 12:55:19 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-01-25 12:56:36 +0100 |
commit | d99f6691597e500458ec2ecbcc4a7765c11c9c62 (patch) | |
tree | 58883c1ccd875b9c3947dfc70feebec4aa61faeb /bin | |
parent | 50620a3f952a9b2273f3d7a60d7241b4955fff6e (diff) | |
download | jenkins.debian.net-d99f6691597e500458ec2ecbcc4a7765c11c9c62.tar.xz |
fixup! d-i: pass non_{po,pdf}_langs as params to aid checking manuals
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/d-i_check_jobs.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/d-i_check_jobs.sh b/bin/d-i_check_jobs.sh index 9400a02f..9c429fc0 100755 --- a/bin/d-i_check_jobs.sh +++ b/bin/d-i_check_jobs.sh @@ -145,11 +145,11 @@ for DIRECTORY in * ; do for FORMAT in pdf html ; do # Some languages are unsupported in PDF if [ $FORMAT = pdf ] && - expr match ${NON_PDF_LANGS} ".*\b${$DIRECTORY}\b" >/dev/null ; then + expr match ${NON_PDF_LANGS} ".*\b${DIRECTORY}\b" >/dev/null ; then continue fi # we add a _po2xml suffix for all but the NON_PO_LANGS - if ! expr match ${NON_PO_LANGS} ".*\b${$DIRECTORY}\b" >/dev/null ; then + if ! expr match ${NON_PO_LANGS} ".*\b${DIRECTORY}\b" >/dev/null ; then FORMAT=${FORMAT}_po2xml fi if [ ! -d ~jenkins/jobs/${DI_MANUAL_JOB_PATTERN}${DIRECTORY}_${FORMAT} ] ; then |