Skip to content

Commit 478b4b6

Browse files
committed
Fix some typos
1 parent 2f1edb1 commit 478b4b6

File tree

2 files changed

+3
-10
lines changed

2 files changed

+3
-10
lines changed

registry/coder/modules/aider/main.tf

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -129,12 +129,6 @@ variable "ai_api_key" {
129129
sensitive = true
130130
}
131131

132-
resource "coder_env" "ai_api_key" {
133-
agent_id = var.agent_id
134-
name = "ARG_API_KEY"
135-
value = var.ai_api_key
136-
}
137-
138132
variable "custom_env_var_name" {
139133
type = string
140134
description = "Custom environment variable name when using custom provider"
@@ -156,7 +150,7 @@ variable "agentapi_version" {
156150
variable "base_aider_config" {
157151
type = string
158152
description = <<-EOT
159-
Base Aider configuration in ynl format. Will be Store in .aider.conf.yml file.
153+
Base Aider configuration in yaml format. Will be stored in .aider.conf.yml file.
160154
161155
options include:
162156
read:

registry/coder/modules/aider/scripts/install.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ echo "Workspace: $AIDER_START_DIRECTORY"
1212
echo "--------------------------------"
1313

1414
function install_aider() {
15-
echo "pipx not found"
16-
echo "Installing pipx via apt-get..."
15+
echo "pipx installing..."
1716
sudo apt-get install -y pipx
1817
echo "pipx installed!"
1918
pipx ensurepath
@@ -46,7 +45,7 @@ function configure_aider_settings(){
4645

4746
mkdir -p "$HOME/.config/aider"
4847

49-
echo $ARG_AIDER_CONFIG > "$HOME/.config/aider/.aider.conf.yml"
48+
echo "$ARG_AIDER_CONFIG" > "$HOME/.config/aider/.aider.conf.yml"
5049
echo "Added Coder MCP extension to Aider config.yml"
5150
else
5251
printf "MCP Server not Implemented"

0 commit comments

Comments
 (0)