Skip to content

Commit

Permalink
fix prepush script
Browse files Browse the repository at this point in the history
  • Loading branch information
marzukr committed Dec 22, 2024
1 parent 0045d60 commit 0f0dc34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .githooks/pre-push
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
set -e

echo "Linting C++ Files..."
api/venv/bin/cpplint --recursive --quiet ai/src ai/tests
api/.venv/bin/cpplint --recursive --quiet ai/src ai/tests

echo "Linting Python Files..."
find api/src -type f -name "*.py" | xargs api/venv/bin/pylint
find api/src -type f -name "*.py" | xargs api/.venv/bin/pylint

echo "Building..."
docker compose -f docker-compose.dev.yml build ai
Expand Down

0 comments on commit 0f0dc34

Please sign in to comment.