- prevent makefile cache to ignore test - update image_db_create_erplibre_base - add mariadb migrator test - add helloworld test - fix other test - add isort format - add show log of test - add clean to remove temporary file
19 lines
738 B
Bash
Executable file
19 lines
738 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
if [[ "${OSTYPE}" == "linux-gnu" ]]; then
|
|
OS=$(lsb_release -si)
|
|
VERSION=$(cat /etc/issue)
|
|
if [[ "${OS}" == "Ubuntu" ]]; then
|
|
if [[ "${VERSION}" == Ubuntu\ 18.04* || "${VERSION}" == Ubuntu\ 20.04* ]]; then
|
|
echo "\n---- linux-gnu installation process started ----"
|
|
./script/install_debian_dependency.sh
|
|
else
|
|
echo "Your version is not supported, only support 18.04 and 20.04 : ${VERSION}"
|
|
fi
|
|
else
|
|
echo "Your Linux system is not supported, only support Ubuntu 18.04 or Ubuntu 20.04."
|
|
fi
|
|
elif [[ "${OSTYPE}" == "darwin"* ]]; then
|
|
echo "\n---- Darwin installation process started ----"
|
|
./script/install_OSX_dependency.sh
|
|
fi
|