Skip to content

Commit 8f776b3

Browse files
authored
fix(scripts): log output path matches description (commontoolsinc#1921)
1 parent a3f192c commit 8f776b3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ claude-research.key
2020
.page-agent-config.json
2121
.common.json
2222
.knowledge
23-
packages/local-dev-toolshed.log
23+
local-dev-toolshed.log
2424
local-dev-shell.log
2525
tools/ralph/logs/

scripts/start-local-dev.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@ check_port 5173
4141

4242
# Start shell dev server in background
4343
cd packages/shell
44-
deno task dev-local > ../../local-dev-shell.log 2>&1 &
44+
deno task dev-local > local-dev-shell.log 2>&1 &
4545
SHELL_PID=$!
4646

4747
# Wait a moment for shell to start
4848
sleep 2
4949

5050
# Start toolshed dev server in background
5151
cd ../toolshed
52-
SHELL_URL=http://localhost:5173 deno task dev > ../local-dev-toolshed.log 2>&1 &
52+
SHELL_URL=http://localhost:5173 deno task dev > local-dev-toolshed.log 2>&1 &
5353
TOOLSHED_PID=$!
5454

5555
# # Function to cleanup background processes

0 commit comments

Comments
 (0)