0
0
mirror of https://github.com/renovatebot/renovate.git synced 2024-12-22 05:28:35 +00:00
renovatebot_renovate/lib/logger/cmd-serializer.ts
2023-11-07 15:50:29 +00:00

10 lines
250 B
TypeScript

// istanbul ignore next
export default function cmdSerializer(
cmd: string | string[],
): string | string[] {
if (typeof cmd === 'string') {
return cmd.replace(/https:\/\/[^@]*@/g, 'https://**redacted**@'); // TODO #12874
}
return cmd;
}