Add recording exit intruction

This commit is contained in:
Mohammad Fares 2018-07-24 12:12:05 +03:00
parent 42d950a2b6
commit 8d36807de1
1 changed files with 3 additions and 0 deletions

View File

@ -185,6 +185,9 @@ function command(argv) {
env: di.deepmerge(process.env, config.json.env)
});
console.log('The recording session is started');
console.log('Press', di.chalk.green('CTRL+D'), 'to exit and save the recording');
// Input and output capturing and redirection
ptyProcess.on('data', onData);
ptyProcess.on('exit', done);