PeerTube/shared/extra-utils/cli/cli.ts

25 lines
525 B
TypeScript
Raw Normal View History

2017-09-07 13:27:35 +00:00
import { exec } from 'child_process'
2017-12-28 12:59:22 +00:00
import { ServerInfo } from '../server/servers'
2017-09-07 13:27:35 +00:00
function getEnvCli (server?: ServerInfo) {
return `NODE_ENV=test NODE_APP_INSTANCE=${server.internalServerNumber}`
2017-09-07 13:27:35 +00:00
}
2020-01-10 09:30:08 +00:00
async function execCLI (command: string) {
2017-09-07 15:58:09 +00:00
return new Promise<string>((res, rej) => {
2017-09-07 13:27:35 +00:00
exec(command, (err, stdout, stderr) => {
if (err) return rej(err)
return res(stdout)
})
})
}
// ---------------------------------------------------------------------------
export {
execCLI,
getEnvCli
}