renovate/lib/logger/cmd-serializer.ts
RahulGautamSingh ee2e155f1f
fix: modify regex to be re2 compatbile (#12778)
Co-authored-by: Rhys Arkins <rhys@arkins.net>
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
2021-11-29 19:16:05 +00:00

9 lines
249 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;
}