From 59b372848737687c588acc1c80eb8a0c13bc08c3 Mon Sep 17 00:00:00 2001 From: Chris Novakovic Date: Wed, 8 Oct 2025 09:27:49 +0100 Subject: [PATCH] Tidy up help text Wrap at 80 characters and remove the jarcat reference (unfortunately it doesn't make any sense now that the tool is called arcat...) --- main.go | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/main.go b/main.go index dc8d774..aba1d26 100644 --- a/main.go +++ b/main.go @@ -96,21 +96,21 @@ var opts = struct { } `command:"ar" alias:"a" description:"Creates a new ar archive."` }{ Usage: ` -arcat is a tool for creating, extracting and concatenating archives.. +arcat is a tool for creating, extracting and concatenating archives. -Its original and most unique feature is performing efficient concatenation of .jar files -when compiling Java code. This is possible with zip files because each file is compressed -individually so it's possible to combine them without decompressing and recompressing each one. +Its original and most unique feature is performing efficient concatenation of +.jar files when compiling Java code. This is possible with zip files because +each file is compressed individually so it's possible to combine them without +decompressing and recompressing each one. -It now has a number of other features to help in compilation and serves as a general-purpose -zip manipulator for Please. To help us maintain reproduceability of builds it is able to strip -timestamps from files, and also has a bunch of Python-specific functionality to help with .pex files. +It now has a number of other features to help in compilation and serves as a +general-purpose manipulator of archive formats for Please. To help us maintain +reproduceability of builds it is able to strip timestamps from files, and also +has a bunch of Python-specific functionality to help with .pex files. -Typically you don't invoke this directly, Please will run it when individual rules need it. -You're welcome to use it separately if you find it useful, although be aware that we do not -aim to maintain compatibility very strongly. - -Any apparent relationship between the name of this tool and bonsai kittens is completely coincidental. +Typically you don't invoke this directly, Please will run it when individual +rules need it. You're welcome to use it separately if you find it useful, +although be aware that we do not aim to maintain compatibility very strongly. `, }