chore: remove short aliases

This commit is contained in:
Jan Bader
2025-01-28 00:01:55 +01:00
parent b3a597f406
commit 6613f4f880

View File

@ -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)