From 821600f0b0720fa3441d2309cc6f6f53b4e59d05 Mon Sep 17 00:00:00 2001 From: Ralph Meier Date: Fri, 16 Nov 2018 11:21:30 +0100 Subject: [PATCH] fix: improve error text --- lib/shell/sh-is-release-branch-creation-allowed.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/shell/sh-is-release-branch-creation-allowed.js b/lib/shell/sh-is-release-branch-creation-allowed.js index 657be51..841a252 100644 --- a/lib/shell/sh-is-release-branch-creation-allowed.js +++ b/lib/shell/sh-is-release-branch-creation-allowed.js @@ -11,7 +11,7 @@ module.exports = function (dep) { if (!isPatchAllowed) { const msg = ` It's not allowed to create a patch version based on ${argv.baseTag} - Please first execute 'npx @daraff/create-bump-pr' to bump the version on master + Please first execute 'npx @daraff/create-bump-pr@latest' to bump the version on master ` return reject(new Error(msg)) }