This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Script to troubleshoot ChatGPT macOS app crashes | |
| echo "Starting ChatGPT macOS app crash troubleshooting..." | |
| # Step 1: Clear Application Support files | |
| APP_SUPPORT_PATH="$HOME/Library/Application Support/com.openai.chat" | |
| if [ -d "$APP_SUPPORT_PATH" ]; then | |
| echo "Removing Application Support files..." |
OlderNewer