Skip to content

Commit f1dc3fc

Browse files
committedFeb 4, 2019
fix(publish): Correct silly log heading
1 parent 1caeb28 commit f1dc3fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎commands/publish/lib/get-npm-username.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ function getNpmUsername(_opts) {
1818
return getProfileData(opts).then(success, failure);
1919

2020
function success(result) {
21-
opts.log.silly("npm whoami", "received %j", result);
21+
opts.log.silly("npm profile get", "received %j", result);
2222

2323
if (!result.username) {
2424
throw new ValidationError(

0 commit comments

Comments
 (0)
Please sign in to comment.