6 lines
190 B
Bash
6 lines
190 B
Bash
#!/usr/bin/env bash
|
||
# Cursor code5 崩溃 · 一键修复(Cmd+Q 退出 Cursor 后运行)
|
||
set -euo pipefail
|
||
ROOT="$(cd "$(dirname "$0")" && pwd)"
|
||
python3 "$ROOT/cursor_code5_fix.py" "$@"
|