mirror of
https://github.com/humhub/humhub.git
synced 2025-02-19 15:45:25 +01:00
9 lines
330 B
Bash
Executable File
9 lines
330 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/2.41/chromedriver_linux64.zip \
|
|
&& unzip -o -d $HOME chromedriver_linux64.zip \
|
|
&& chmod +x $HOME/chromedriver |