(sessionId: string)
| 70 | export const IS_WINDOWS = os.platform() === 'win32'; |
| 71 | |
| 72 | export function getPidFilePath(sessionId: string) { |
| 73 | const runtimeDir = getRuntimeHome(sessionId); |
| 74 | return path.join(runtimeDir, 'daemon.pid'); |
| 75 | } |
| 76 | |
| 77 | export function getDaemonPid(sessionId: string) { |
| 78 | try { |
no test coverage detected