From 41954709ffa612cebdecc7f36e22dee966325f69 Mon Sep 17 00:00:00 2001 From: Tapani Moilanen Date: Tue, 7 Jun 2016 19:27:33 +0300 Subject: [PATCH] fix(install): instruct to use npm explore in non-git repo warning (#105) --- lib/install.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/install.js b/lib/install.js index 934478a..8341bbc 100644 --- a/lib/install.js +++ b/lib/install.js @@ -69,7 +69,7 @@ function warnAboutGit() { console.warn( // eslint-disable-line no-console 'This does not seem to be a git project.\n' + 'Although ghooks was installed, the actual git hooks have not.\n' + - 'Run "git init" and then "npm run ghooks install".\n\n' + + 'Run "git init" and then "npm explore ghooks -- npm run install".\n\n' + 'Please ignore this message if you are not using ghooks directly.' ) }