Stop logging W as an L

This commit is contained in:
2025-03-10 18:58:34 +01:00
parent 913a279011
commit d94f8db27a

View File

@@ -167,7 +167,10 @@ func (instruction *LinkInstruction) RunAsync(status chan (error)) {
}
if !instruction.Force && AreSame(instruction.Source, instruction.Target) {
status <- fmt.Errorf("source %s and target %s are the same, nothing to do...",
//status <- fmt.Errorf("source %s and target %s are the same, nothing to do...",
// FormatSourcePath(instruction.Source),
// FormatTargetPath(instruction.Target))
LogInfo("Source %s and target %s are the same, nothing to do...",
FormatSourcePath(instruction.Source),
FormatTargetPath(instruction.Target))
return