From b2f3a350fb9f28d49b89d8d83922725466c5a0fc Mon Sep 17 00:00:00 2001 From: Charan Sarin Date: Wed, 10 Jan 2024 15:53:15 +0100 Subject: [PATCH] Added repository details to console.log. --- bin/cli-pull.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/cli-pull.js b/bin/cli-pull.js index f2d8e99..e84f137 100755 --- a/bin/cli-pull.js +++ b/bin/cli-pull.js @@ -17,12 +17,13 @@ cli .version(version) .arguments('[repository]') .action(async (repository) => { - console.log('pulling') + console.log('pulling repositories') try { if (repository) { if (!repos.has(repository)) { throw Error(`repository "${repository}" does not exist`) } + console.log('pulling', repository) pull(repos.get(repository), repository) } else { repos.forEach(pull)