tools: Improve diffability/maintainability
authorOlliver Schinagl <oliver@schinagl.nl>
Wed, 14 Dec 2022 10:33:01 +0000 (11:33 +0100)
committerChristian Marangi <ansuelsmth@gmail.com>
Sat, 24 Dec 2022 10:54:10 +0000 (11:54 +0100)
commitae614fb397c2754e2b6dab896b58ec30b11af526
tree2059977aa24a6f12ff9e3e9ea07f6ddb3268a1e5
parentb2bfea481e8030561346a49f92818e07518c08c2
tools: Improve diffability/maintainability

There's no purpose to squish multiple tools into a single line (and
spread those out over multiple lines). It might look 'nice' in certain
conditions, but it's annoying to maintain.

For example, but not limited to:
* adding/removing tools, causes hard to read diffs
* Duplicates are harder to spot
* Sorting can not be (easily?) automated

With this proposed change, the above annoyances go away. Inserting a new
tool can be done with a single line-change-diff, sorting can be done by
any editor (in vi, select, :sort for example) and dupes are much easier
to spot.

Signed-off-by: Olliver Schinagl <oliver@schinagl.nl>
tools/Makefile