Fix some stragglers

This commit is contained in:
2026-02-02 18:31:03 -05:00
parent 02edf259f0
commit 4d1c30b874
5 changed files with 6 additions and 6 deletions

View File

@@ -33,7 +33,7 @@ func runExpress(changes <-chan FileChange, numProcesses int, basePort int, pool
// start spawns the worker process. Caller must NOT hold w.mu.
start := func() bool {
cmd := exec.Command("../express/run.sh", "--listen", w.addr)
cmd := exec.Command("../backend/run.sh", "--listen", w.addr)
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
@@ -182,7 +182,7 @@ func runExpress(changes <-chan FileChange, numProcesses int, basePort int, pool
runBuild := func() bool {
log.Printf("[build] Starting ncc build...")
cmd := exec.Command("../express/build.sh")
cmd := exec.Command("../backend/build.sh")
stdout, _ := cmd.StdoutPipe()
stderr, _ := cmd.StderrPipe()