summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-08 06:32:22 -0500
committerJeff Carr <[email protected]>2025-10-08 06:32:22 -0500
commit6c60e24225760ea1ab33173e27c5764693788a9a (patch)
tree5d8c9e616d6090dfaaee189b7243d332c2e9fb26 /main.go
parent19bbf13be2336d522a57caba1e5da9a80cdb8099 (diff)
fixes on fixes
Diffstat (limited to 'main.go')
-rw-r--r--main.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/main.go b/main.go
index af5d561..b60edec 100644
--- a/main.go
+++ b/main.go
@@ -89,6 +89,14 @@ func main() {
me.sh.GoodExit(s)
}
+ if argv.Fixer != nil {
+ s, err := doFix()
+ if err != nil {
+ me.sh.BadExit(s, err)
+ }
+ me.sh.GoodExit(s)
+ }
+
if argv.Clean != nil {
if err := doClean(); err != nil {
badExit(err)