From fd76f8580d7934ce94f700d5bd17615261d69a34 Mon Sep 17 00:00:00 2001 From: Andrew Date: Thu, 3 Jul 2025 12:01:57 -0500 Subject: [PATCH 1/2] Update run-server.sh Fix issue where wslu not installed results in var not set errors. --- run-server.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run-server.sh b/run-server.sh index 3428e05..2fc3359 100755 --- a/run-server.sh +++ b/run-server.sh @@ -125,7 +125,7 @@ get_claude_config_path() { win_appdata=$(wslvar APPDATA 2>/dev/null) fi - if [[ -n "$win_appdata" ]]; then + if [[ "${win_appdata:-}" != "" ]]; then echo "$(wslpath "$win_appdata")/Claude/claude_desktop_config.json" else print_warning "Could not determine Windows user path automatically. Please ensure APPDATA is set correctly or provide the full path manually." From 55bdb72a78a9c36c45aea326cd3edb0b32101be9 Mon Sep 17 00:00:00 2001 From: Beehive Innovations Date: Fri, 8 Aug 2025 09:32:00 +0400 Subject: [PATCH 2/2] Update run-server.sh Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> --- run-server.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run-server.sh b/run-server.sh index 2fc3359..ba0af06 100755 --- a/run-server.sh +++ b/run-server.sh @@ -125,7 +125,7 @@ get_claude_config_path() { win_appdata=$(wslvar APPDATA 2>/dev/null) fi - if [[ "${win_appdata:-}" != "" ]]; then + if [[ -n "${win_appdata:-}" ]]; then echo "$(wslpath "$win_appdata")/Claude/claude_desktop_config.json" else print_warning "Could not determine Windows user path automatically. Please ensure APPDATA is set correctly or provide the full path manually."