From 665c6851529122ca15d7919a6a9e61bc109373c4 Mon Sep 17 00:00:00 2001 From: Robert-Zacchigna Date: Thu, 18 Apr 2024 00:55:54 -0500 Subject: [PATCH] fix pre-commit install cmd --- Makefile | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7f80e13..b273cf8 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ init: pip install -r requirements.txt devel: pip install -r requirements_dev.txt - pre-commit install --hook-type pre-commit --hook-type pre-push --install-hooks -t post-checkout -t post-merge + pre-commit install --hook-type pre-push --install-hooks -t post-checkout -t post-merge curl -sSL https://install.python-poetry.org | python3 - pip install poetry-plugin-export test: diff --git a/README.md b/README.md index 804b8ea..beb0879 100644 --- a/README.md +++ b/README.md @@ -123,7 +123,7 @@ OR pip install -r requirements.txt pip install -r requirements_dev.txt pip install -e . -pre-commit install --hook-type pre-commit --hook-type pre-push --install-hooks -t post-checkout -t post-merge +pre-commit install --hook-type pre-push --install-hooks -t post-checkout -t post-merge curl -sSL https://install.python-poetry.org | python3 - pip install poetry-plugin-export ```