From 6613f4f880dd454f7e41640e36c8bfb973d91f2a Mon Sep 17 00:00:00 2001 From: Jan Bader Date: Tue, 28 Jan 2025 00:01:55 +0100 Subject: [PATCH] chore: remove short aliases --- main.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/main.go b/main.go index 1fc9709..a1fae36 100644 --- a/main.go +++ b/main.go @@ -30,15 +30,11 @@ func main() { switch flag.Arg(0) { case "normalize": - fallthrough - case "n": err := filepath.Walk(*path, normalize) if err != nil { panic(err) } case "removesuffix": - fallthrough - case "rs": suffix := flag.Arg(1) err := filepath.Walk(*path, removeSuffix(suffix)) if err != nil { @@ -46,8 +42,6 @@ func main() { } removeSuffix(suffix) case "unpack": - fallthrough - case "up": err := filepath.Walk(*path, unpack) if err != nil { panic(err)