mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-03-21 17:34:57 -05:00
* Goal is to enable caching of dependency builds to speed up CI build times significantly * Should ease transition to new plugin build template version
14 lines
271 B
Bash
Executable File
14 lines
271 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-deps-linux.zsh "${@}"
|