Skip to content

Commit

Permalink
adds poppler-utils installation
Browse files Browse the repository at this point in the history
  • Loading branch information
WolfgangFahl committed Mar 19, 2023
1 parent f89a501 commit 5af206e
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions scripts/getSamples
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,19 @@ cermine() {
#
extract_text() {
local volno="$1"
which pdftotext
if [ $? -ne 0 ]
then
os=`uname`
case $os in
Darwin)
sudo port install poppler-utils
;;
*)
sudo apt-get install poppler-utils
;;
esac
fi
voldir
vol="Vol-$volno"
cd $vol
Expand Down

0 comments on commit 5af206e

Please sign in to comment.