Announce current stage during all tweaks mode

This commit is contained in:
2025-10-12 16:42:47 -04:00
parent c62731ced3
commit 5dfd3312ae
3 changed files with 15 additions and 1 deletions
+7
View File
@@ -1,6 +1,7 @@
package main
import (
"fmt"
"os"
"os/exec"
"strings"
@@ -101,3 +102,9 @@ func mkdir(path string) {
other.PrintError("Failed to set ownership of \""+path+"\"", 1)
}
}
func allTweaksAnnounce(stage string) {
if performAllTweaks {
fmt.Println("Performing " + stage + "...")
}
}