mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-03-22 01:44:49 -05:00
Based on OBS plugin template build scripts with some minor adjustments: * Adjust format check scripts to exclude ./deps folder * Adjust release scripts to only draft releases * Always build installers * Always upload build artefacts * Build opencv for Mac and Windows releases
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 "${@}"
|