This commit is contained in:
2025-07-17 20:25:17 +04:00
parent 1b03a9ef6d
commit 09dedf9669
4 changed files with 10 additions and 4 deletions

View File

@@ -248,7 +248,7 @@ fn (mut self ReplaceInstructions) replace_in_dir_recursive(path1 string, extensi
txtold := os.read_file(pathnew)!
txtnew := self.replace(text: txtold, dedent: false)!
if txtnew.trim(' \n') == txtold.trim(' \n') {
console.print_header(' nothing to do : ${pathnew}')
//console.print_header(' nothing to do : ${pathnew}')
} else {
console.print_header(' replace done : ${pathnew}')
count++