mirror of
https://github.com/renovatebot/renovate.git
synced 2024-12-22 05:28:35 +00:00
10 lines
250 B
TypeScript
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;
|
|
}
|