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:
parent
d2d186b912
commit
1fc810a266
@ -85,5 +85,5 @@ script:
|
|||||||
- pwd
|
- pwd
|
||||||
- ls -la
|
- ls -la
|
||||||
- ./dobuild
|
- ./dobuild
|
||||||
- ./doinstall
|
- ./doinstall --noWait
|
||||||
- /usr/bin/pdf2htmlEX -v
|
- /usr/bin/pdf2htmlEX -v
|
||||||
|
10
doinstall
10
doinstall
@ -1,8 +1,12 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
echo "This installation assumes you have 'sudo' privileges"
|
if [[ $# -eq 0 ]] ; then
|
||||||
echo "Type ctrl-c now if DO NOT want to continue"
|
|
||||||
read -p "Type anything else to continue: "
|
echo "This installation assumes you have 'sudo' privileges"
|
||||||
|
echo "Type ctrl-c now if DO NOT want to continue"
|
||||||
|
read -p "Type anything else to continue: "
|
||||||
|
|
||||||
|
fi
|
||||||
|
|
||||||
cd build
|
cd build
|
||||||
sudo make install
|
sudo make install
|
||||||
|
Loading…
Reference in New Issue
Block a user