Skip to content

Commit

Permalink
Fix checker scripts invocation (#844)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas-C authored Jul 10, 2023
1 parent fd5b2a0 commit 63f2d77
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ jobs:
run: |
# Using qpdf
find . -name '*.pdf' | xargs -n 1 qpdf --check --password=fpdf2
export PYTHONPATH=$PWD
# Using Datalogics PDF Checker:
scripts/install-pdfchecker.sh
find . -name '*.pdf' | xargs -n 1 scripts/pdfchecker.py
Expand Down
2 changes: 1 addition & 1 deletion scripts/install-pdfchecker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ DOWNLOADED_ZIP_FILENAME=PDF-CHECKER-Lin64.zip
INSTALL_DIR_PATH=${1:-$PWD/PDF_Checker}
export TMPDIR=$(mktemp -d /tmp/pdfchecker.XXXXXX)

wget --quiet --no-check-certificate $BASE_URL/$DOWNLOADED_ZIP_FILENAME
wget --quiet $BASE_URL/$DOWNLOADED_ZIP_FILENAME
unzip $DOWNLOADED_ZIP_FILENAME
rm $DOWNLOADED_ZIP_FILENAME

Expand Down

0 comments on commit 63f2d77

Please sign in to comment.