From 8d36807de14fbb57490d1e5aa2771d04500b336f Mon Sep 17 00:00:00 2001 From: Mohammad Fares Date: Tue, 24 Jul 2018 12:12:05 +0300 Subject: [PATCH] Add recording exit intruction --- commands/record.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/commands/record.js b/commands/record.js index fba0af7..fc30934 100644 --- a/commands/record.js +++ b/commands/record.js @@ -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);