10 lines
183 B
Bash
10 lines
183 B
Bash
|
#!/bin/sh
|
||
|
if [[ -s ./minified/web/viewer.html ]]; then
|
||
|
exit
|
||
|
fi
|
||
|
git clone https://github.com/mozilla/pdf.js/
|
||
|
cd pdf.js
|
||
|
npm i
|
||
|
./node_modules/.bin/gulp minified
|
||
|
mv build/minified ..
|