From 4b5811ae3e4848dbebef6b87e7eb6c2773c4d17d Mon Sep 17 00:00:00 2001 From: AlvoBen Date: Tue, 8 Apr 2025 09:35:01 +0300 Subject: [PATCH] Fix environment variable reference for CodeBashingPath in binds.go --- internal/params/binds.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/params/binds.go b/internal/params/binds.go index aa2049d10..17e8dcbf2 100644 --- a/internal/params/binds.go +++ b/internal/params/binds.go @@ -13,7 +13,7 @@ var EnvVarsBinds = []struct { {IgnoreProxyKey, IgnoreProxyEnv, ""}, {AgentNameKey, AgentNameEnv, "ASTCLI"}, {OriginKey, OriginEnv, "CLI"}, - {CodeBashingPathKey, ScansPathEnv, "api/codebashing/lessons"}, + {CodeBashingPathKey, CodeBashingPathEnv, "api/codebashing/lessons"}, {CustomStatesAPIPathKey, CustomStatesAPIPathEnv, "api/custom-states"}, {ScansPathKey, ScansPathEnv, "api/scans"}, {ProjectsPathKey, ProjectsPathEnv, "api/projects"},