mirror of
https://github.com/Palakis/obs-websocket.git
synced 2024-08-30 18:12:16 +00:00
14 lines
266 B
Bash
Executable File
14 lines
266 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if ! type zsh > /dev/null 2>&1; then
|
|
echo ' => Installing script dependency Zsh.'
|
|
|
|
sudo apt-get -y update
|
|
sudo apt-get -y install zsh
|
|
fi
|
|
|
|
SCRIPT=$(readlink -f "${0}")
|
|
SCRIPT_DIR=$(dirname "${SCRIPT}")
|
|
|
|
zsh ${SCRIPT_DIR}/build-linux.zsh "${@}"
|