Skip to content

Commit

Permalink
fix(wizard): Fixing wizard for dev mode
Browse files Browse the repository at this point in the history
  • Loading branch information
rishikanthc committed Oct 19, 2024
1 parent 8964ea9 commit 8731290
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/lib/queue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,11 @@ const execCommandWithLogging = (cmd: string, job: Job, progress: number) => {
reject(new Error(`Command failed with exit code ${code}`));
}
});


process.on('error', (err) => {
reject(new Error(`Failed to start process: ${err.message}`));
});
});
};

Expand Down

0 comments on commit 8731290

Please sign in to comment.