13 lines
427 B
Bash
13 lines
427 B
Bash
|
|
#!/bin/bash
|
||
|
|
# Wrapper for lsp_bridge.py that logs to a file for debugging IntelliJ issues
|
||
|
|
|
||
|
|
LOG_FILE="/tmp/lsp_bridge_debug.log"
|
||
|
|
|
||
|
|
echo "=== LSP Bridge started at $(date) ===" >> "$LOG_FILE"
|
||
|
|
echo "Args: $@" >> "$LOG_FILE"
|
||
|
|
echo "PWD: $(pwd)" >> "$LOG_FILE"
|
||
|
|
echo "Python: $(which python3)" >> "$LOG_FILE"
|
||
|
|
echo "" >> "$LOG_FILE"
|
||
|
|
|
||
|
|
exec /opt/homebrew/bin/python3 /Users/lrihni/Projects/iLSP/scripts/lsp_bridge.py "$@" 2>> "$LOG_FILE"
|