Skip to content

Commit

Permalink
chore: tweak log message
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonkuhrt committed Feb 23, 2021
1 parent e758807 commit 8bd321c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/npm-auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const npmrcFilePath = path.join(os.homedir(), '.npmrc')
export function setupNPMAuthfileOnCI(): void {
if (isGithubCIEnvironment() && process.env.NPM_TOKEN) {
const authContent = `//registry.npmjs.org/:_authToken=${process.env[TOKEN_ENV_VAR_NAME]}`
debug('writing or appending npm token to %s', npmrcFilePath)
debug('writing or appending npm auth token to %s', npmrcFilePath)
fs.append(npmrcFilePath, authContent)
}
}
Expand Down

0 comments on commit 8bd321c

Please sign in to comment.