Skip to content
Permalink
master
Switch branches/tags
Go to file
 
 
Cannot retrieve contributors at this time
executable file 11 lines (8 sloc) 282 Bytes
#!/bin/bash
set -x
set -e
apt-get update -qq
# install chrome to use pagedown::chrome_print()
curl -LO https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
apt-get install -y ./google-chrome-stable_current_amd64.deb
rm google-chrome-stable_current_amd64.deb