mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-25 21:36:52 +08:00
14 lines
292 B
Bash
Executable File
14 lines
292 B
Bash
Executable File
#! /bin/bash
|
|
|
|
echo "Setting up the environment..."
|
|
|
|
# Install pre-commit package
|
|
python -m pip install pre-commit
|
|
|
|
# Install pre-commit hooks if .git directory exists
|
|
if [ -d ".git" ]; then
|
|
echo "Installing pre-commit hooks..."
|
|
pre-commit install
|
|
make install-pre-commit-hooks
|
|
fi
|