[FIX] Problem with pre-commit hook that does not exist on 2.0 branchs.
This commit is contained in:
parent
e92ea8488d
commit
b8f68384a6
@ -231,11 +231,13 @@ init() {
|
|||||||
GIT_WORK_TREE="${GISSMO_DIR}/" GIT_DIR="${GISSMO_DIR}/.git/" git pull -q origin ${GIT_BRANCH} || error_and_quit "Pull command on Git repository failed."
|
GIT_WORK_TREE="${GISSMO_DIR}/" GIT_DIR="${GISSMO_DIR}/.git/" git pull -q origin ${GIT_BRANCH} || error_and_quit "Pull command on Git repository failed."
|
||||||
fi
|
fi
|
||||||
info "Git repository state checked."
|
info "Git repository state checked."
|
||||||
# install pre-commit hook that check code validity and more
|
# install pre-commit hook that check code validity and more (only for 1.9 branchs)
|
||||||
if ! test -f "${GISSMO_DIR}/.git/hooks/pre-commit"; then
|
if ! test -f "${GISSMO_DIR}/.git/hooks/pre-commit"; then
|
||||||
|
if test -f "${GISSMO_DIR}/scripts/git_hooks/pre-commit"; then
|
||||||
cp "${GISSMO_DIR}/scripts/git_hooks/pre-commit" "${GISSMO_DIR}/.git/hooks/pre-commit" || error_and_quit "Failed to install pre-commit hook."
|
cp "${GISSMO_DIR}/scripts/git_hooks/pre-commit" "${GISSMO_DIR}/.git/hooks/pre-commit" || error_and_quit "Failed to install pre-commit hook."
|
||||||
info "Git repository pre-commit hook installed."
|
info "Git repository pre-commit hook installed."
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
source bin/activate || error_and_quit "Failed entering python virtual environment"
|
source bin/activate || error_and_quit "Failed entering python virtual environment"
|
||||||
cd "$GISSMO_DIR"
|
cd "$GISSMO_DIR"
|
||||||
pip install -q -r requirements.txt || error_and_quit "Python dependancies
|
pip install -q -r requirements.txt || error_and_quit "Python dependancies
|
||||||
|
Loading…
Reference in New Issue
Block a user