Skip to content

Commit de8d718

Browse files
authored
Remove emojis from error messages in pre-commit.sh
1 parent 76d58d5 commit de8d718

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pre-commit.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ done
3232

3333
# 4. Check if a virtual environment was found
3434
if [ -z "$VENV_DIR" ]; then
35-
echo "🚨 Error: Virtual environment not found. Please create one (e.g., 'python3 -m venv .venv') and run the hook again."
35+
echo "Error: Virtual environment not found. Please create one (e.g., 'python3 -m venv .venv') and run the hook again."
3636
exit 1
3737
fi
3838

@@ -41,7 +41,7 @@ PYTHON_EXEC="$VENV_DIR/bin/python"
4141

4242
# 6. Check if the interpreter exists
4343
if [ ! -x "$PYTHON_EXEC" ]; then
44-
echo "🚨 Error: Python executable not found at $PYTHON_EXEC"
44+
echo "Error: Python executable not found at $PYTHON_EXEC"
4545
exit 1
4646
fi
4747

0 commit comments

Comments
 (0)