From 71edee17bec7a10b6e3e2f81c6c4140e0e7d1351 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20B=C3=A4uerle?= Date: Mon, 15 Apr 2024 13:33:49 -0700 Subject: [PATCH] build: fix workspace variable name in dev setup (#1138) --- Makefile | 2 +- config.toml.template | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 1c516c530d..abc172fb2f 100644 --- a/Makefile +++ b/Makefile @@ -171,7 +171,7 @@ setup-config-prompts: @read -p "Enter your workspace directory [default: $(DEFAULT_WORKSPACE_DIR)]: " workspace_dir; \ workspace_dir=$${workspace_dir:-$(DEFAULT_WORKSPACE_DIR)}; \ - echo "WORKSPACE_DIR=\"$$workspace_dir\"" >> $(CONFIG_FILE).tmp + echo "WORKSPACE_BASE=\"$$workspace_dir\"" >> $(CONFIG_FILE).tmp # Help help: diff --git a/config.toml.template b/config.toml.template index 60648c78c9..06310520e4 100644 --- a/config.toml.template +++ b/config.toml.template @@ -1,4 +1,4 @@ # This is a template. Run `cp config.toml.template config.toml` to use it. LLM_API_KEY="" -WORKSPACE_DIR="./workspace" +WORKSPACE_BASE="./workspace"