mirror of
https://github.com/humhub/humhub.git
synced 2025-01-17 14:18:27 +01:00
10 lines
339 B
Bash
Executable File
10 lines
339 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
# -e = exit when one command returns != 0, -v print each command before executing
|
|
set -ev
|
|
|
|
# Install chomedriver
|
|
curl -s -L -o chromedriver_linux64.zip https://chromedriver.storage.googleapis.com/81.0.4044.69/chromedriver_linux64.zip \
|
|
&& unzip -o -d $HOME chromedriver_linux64.zip \
|
|
&& chmod +x $HOME/chromedriver
|