From 63b7501fd1a50e3c952bb155984c65a5bbea6373 Mon Sep 17 00:00:00 2001 From: Esteban Borai Date: Sat, 27 May 2023 15:59:37 -0400 Subject: [PATCH] fix: missing reference --- src/command/login.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/command/login.rs b/src/command/login.rs index f8053e6..07af70c 100644 --- a/src/command/login.rs +++ b/src/command/login.rs @@ -12,8 +12,8 @@ pub fn login( info!("Logging in to npm..."); info!( - "Scope: {:?} Registry: {}, Always Auth: {}, Auth Type: {:?}.", - &scope, ®istry, always_auth, &auth_type + "Scope: {:?} Registry: {}, Auth Type: {:?}.", + &scope, ®istry, &auth_type ); info!("npm info located in the npm debug log"); npm::npm_login(®istry, &scope, &auth_type)?;