- Add sync repo with manifest xml - sync repo print to show missing or added repo - Release 1.0.0 manifest for prod - Support generation manifest from script - Separate prod/dev installation locally script - Generate repo and keep old manifest configuration when update - Move manifest in directory ./manifest/ - Many general fixes
18 lines
702 B
Bash
Executable file
18 lines
702 B
Bash
Executable file
#!/usr/bin/env bash
|
|
################################################################################
|
|
# Script for installing ERPLibre locally for dev
|
|
# Author: Alexandre Ferreira Benevides
|
|
################################################################################
|
|
|
|
if [[ "${OSTYPE}" == "linux-gnu" ]]; then
|
|
OS=$(lsb_release -si)
|
|
if [[ "${OS}" == "Ubuntu" ]]; then
|
|
echo "\n---- linux-gnu installation process started ----"
|
|
./script/install_debian_dependancy.sh
|
|
else
|
|
echo "Your Linux system is not supported."
|
|
fi
|
|
elif [[ "${OSTYPE}" == "darwin"* ]]; then
|
|
echo "\n---- Darwin installation process started ----"
|
|
./script/install_OSX_dependancy.sh
|
|
fi
|