Skip to content

Commit

Permalink
fix: remove authurl from logger
Browse files Browse the repository at this point in the history
  • Loading branch information
mshanemc committed Feb 16, 2021
1 parent f8e774c commit 1aa02f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hubAuth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const authFromStubbedHome = (homeDir: string): void => {
return;
}
if (getAuthStrategy() === AuthStrategy.AUTH_URL && process.env.TESTKIT_AUTH_URL) {
logger(`trying url based auth using ${process.env.TESTKIT_AUTH_URL} for dir ${homeDir}`);
logger('trying to authenticate with AuthUrl');

const tmpUrl = path.join(homeDir, 'tmpUrl');
fs.writeFileSync(tmpUrl, process.env.TESTKIT_AUTH_URL);
Expand Down

0 comments on commit 1aa02f6

Please sign in to comment.