From 49cad88aca4ff6961a2eaea8be59c9fd33e60dad Mon Sep 17 00:00:00 2001 From: Saoud Rizwan <7799382+saoudrizwan@users.noreply.github.com> Date: Wed, 11 Feb 2026 02:25:59 -0800 Subject: [PATCH] chore: fix codex desktop app configuration --- .codex/environments/environment.toml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.codex/environments/environment.toml b/.codex/environments/environment.toml index 691ddd3c38..3be01cd566 100644 --- a/.codex/environments/environment.toml +++ b/.codex/environments/environment.toml @@ -4,14 +4,8 @@ name = "cline" [setup] script = ''' -# Symlink node_modules from main worktree if not already present if [ ! -d "node_modules" ]; then - ln -s /Users/saoud/Repositories/cline/node_modules node_modules -fi - -# Also need webview-ui/node_modules -if [ ! -d "webview-ui/node_modules" ]; then - ln -s /Users/saoud/Repositories/cline/webview-ui/node_modules webview-ui/node_modules + npm run install:all fi '''