mirror of
https://github.com/Lifeforge-app/lifeforge.git
synced 2026-06-28 06:46:24 +00:00
fix(cli): include cwd logging in single service execution
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
import chalk from 'chalk'
|
||||
import concurrently from 'concurrently'
|
||||
|
||||
import { PROJECTS } from '@/commands/project/constants/projects'
|
||||
@@ -30,7 +31,9 @@ export async function startSingleService(
|
||||
|
||||
const cwd = config.cwd instanceof Function ? config.cwd() : config.cwd
|
||||
|
||||
executeCommand(command, { cwd }, extraArgs)
|
||||
logger.debug(`Current Working Directory: ${chalk.blue(cwd)}`)
|
||||
|
||||
executeCommand(command, { cwd, stdio: 'inherit' }, extraArgs)
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user