Commit 92766de37568ae6fbb414f458a5cc58848307e55
1 parent
2f4c7abb83
Exists in
master
PG: fix setup issue
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
ingester/setup.sh
... | ... | @@ -25,9 +25,9 @@ else |
25 | 25 | fi |
26 | 26 | |
27 | 27 | echo "install poppler-utils (pdftotext)" |
28 | -if ("$OS" == "Redhat"); then | |
28 | +if [ "$OS" == "Redhat" ]; then | |
29 | 29 | yum install poppler-utils |
30 | -elif ("$OS" == "Debian"); then | |
30 | +elif [ "$OS" == "Debian" ]; then | |
31 | 31 | sudo apt-get install poppler-utils |
32 | 32 | else |
33 | 33 | echo "unsupported distro" | ... | ... |