mirror of
https://github.com/renovatebot/renovate.git
synced 2025-05-12 15:41:58 +00:00
8 lines
226 B
TypeScript
8 lines
226 B
TypeScript
export default function cmdSerializer(
|
|
cmd: string | string[],
|
|
): string | string[] {
|
|
if (typeof cmd === 'string') {
|
|
return cmd.replace(/https:\/\/[^@]*@/g, 'https://**redacted**@'); // TODO #12874
|
|
}
|
|
return cmd;
|
|
}
|