aboutsummaryrefslogtreecommitdiffstats
path: root/native.go
diff options
context:
space:
mode:
Diffstat (limited to 'native.go')
-rw-r--r--native.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/native.go b/native.go
index 81ee8c8..af994ee 100644
--- a/native.go
+++ b/native.go
@@ -109,17 +109,17 @@ func ProcessFileNative(filePath string, from string, to string) {
// Only write if changes were made
if numChanges > 0 {
- fmt.Println(yellow+
+ fmt.Print(yellow+
"File",
filePath,
"saved after",
numChanges,
"changes",
- reset, "\n\n")
+ reset, "\n\n\n")
ioutil.WriteFile(filePath, []byte(output), os.ModePerm)
} else {
- fmt.Println(yellow+
+ fmt.Print(yellow+
"No changes to write on this file.",
- reset, "\n\n")
+ reset, "\n\n\n")
}
}