0
0
Fork 0
mirror of https://github.com/renovatebot/renovate.git synced 2025-05-12 15:41:58 +00:00
renovatebot_renovate/lib/logger/cmd-serializer.ts
2025-02-26 12:40:30 +00:00

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;
}