1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-12-22 04:50:09 +00:00

corrected installation of pdf2htmlEX for use in travisCI with no user input

This commit is contained in:
Stephen Gaito 2019-09-30 11:05:33 +01:00
parent d2d186b912
commit 1fc810a266
2 changed files with 8 additions and 4 deletions

View File

@ -85,5 +85,5 @@ script:
- pwd - pwd
- ls -la - ls -la
- ./dobuild - ./dobuild
- ./doinstall - ./doinstall --noWait
- /usr/bin/pdf2htmlEX -v - /usr/bin/pdf2htmlEX -v

View File

@ -1,8 +1,12 @@
#!/bin/bash #!/bin/bash
if [[ $# -eq 0 ]] ; then
echo "This installation assumes you have 'sudo' privileges" echo "This installation assumes you have 'sudo' privileges"
echo "Type ctrl-c now if DO NOT want to continue" echo "Type ctrl-c now if DO NOT want to continue"
read -p "Type anything else to continue: " read -p "Type anything else to continue: "
fi
cd build cd build
sudo make install sudo make install