#!/usr/bin/env bash if ! $(python -c "import pylint_odoo" &> /dev/null); then echo 'The pylint module "pylint-odoo" is not installed and is going to be installed now!' sudo pip3 install --upgrade git+https://github.com/oca/pylint-odoo.git else echo 'The pylint module "pylint-odoo" is already installed. Continue ...' fi if ! $(python -c "import git_pylint_commit_hook" &> /dev/null); then echo 'git-pylint-commit-hook is not insalled and is going to be isntalled now!' sudo pip3 install git-pylint-commit-hook else echo 'git-pylint-commit-hook is already installed. Continue ...' fi if [ ! -f ~/gitrepos/dp-int/tools/pylint/pylintrc ]; then echo "The pylintrc file can't be found in ~/gitrepos/dp-int/tools/pylint/!" echo "Please clone the git repository dp-int" fi cd $(git rev-parse --show-toplevel) ln -s -f ~/gitrepos/dp-int/tools/pylint/pylintrc ~/.pylintrc ln -s -f $(git rev-parse --show-toplevel)/dev/pylint/pre-commit $(git rev-parse --show-toplevel)/.git/hooks/pre-commit echo 'pre-commit hook created!'