From c70954191ef0a0f275e5426b3003a785b3746f83 Mon Sep 17 00:00:00 2001 From: 35C4n0r Date: Fri, 13 Mar 2026 15:10:30 +0530 Subject: [PATCH] chore: update XDG_CONFIG_HOME default path in setup_copilot_config function --- registry/coder-labs/modules/copilot/scripts/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/registry/coder-labs/modules/copilot/scripts/install.sh b/registry/coder-labs/modules/copilot/scripts/install.sh index 226f10dd..f5f461d2 100644 --- a/registry/coder-labs/modules/copilot/scripts/install.sh +++ b/registry/coder-labs/modules/copilot/scripts/install.sh @@ -76,7 +76,7 @@ setup_copilot_configurations() { } setup_copilot_config() { - export XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-$HOME/.config}" + export XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-$HOME}" local copilot_config_dir="$XDG_CONFIG_HOME/.copilot" local copilot_config_file="$copilot_config_dir/config.json" local mcp_config_file="$copilot_config_dir/mcp-config.json"