authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2022-09-18 01:06:16 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2022-09-18 01:06:16 -07:00
logef9721811ce58c5bc6af737642a67bc6b996218c
tree85f46ac160444633e94414002b997aa63fc521f8
parentd68545faf237ef3c319d85cfb2dfdf894df61f08

cmd/license: alphabetize output


2 files changed, 15 insertions(+), 14 deletions(-)

licenses.txt+14-14
......@@ -2,21 +2,21 @@ MIT:
22= https://spdx.org/licenses/MIT
33- This
44- git https://gist.github.com/nektro/d468fea84f8217e4c26ee8fbeeea38cc
5- git https://github.com/yaml/libyaml
6- git https://github.com/nektro/zig-extras
7- git https://github.com/nektro/zig-range
8- git https://github.com/nektro/zig-ansi
9- git https://github.com/ziglibs/known-folders
10- git https://github.com/nektro/zig-licenses
11- git https://github.com/truemedian/zfetch
12- git https://github.com/truemedian/hzzp
13- git https://github.com/nektro/iguanaTLS
145- git https://github.com/MasterQ32/zig-uri
15- git https://github.com/nektro/zig-json
6- git https://github.com/marlersoft/zigwin32
7- git https://github.com/nektro/arqv-ini
8- git https://github.com/nektro/iguanaTLS
9- git https://github.com/nektro/zig-ansi
1610- git https://github.com/nektro/zig-detect-license
17- git https://github.com/nektro/zig-licenses-text
18- git https://github.com/nektro/zig-leven
11- git https://github.com/nektro/zig-extras
1912- git https://github.com/nektro/zig-inquirer
20- git https://github.com/nektro/arqv-ini
13- git https://github.com/nektro/zig-json
14- git https://github.com/nektro/zig-leven
15- git https://github.com/nektro/zig-licenses
16- git https://github.com/nektro/zig-licenses-text
17- git https://github.com/nektro/zig-range
2118- git https://github.com/nektro/zig-time
22- git https://github.com/marlersoft/zigwin32
19- git https://github.com/truemedian/hzzp
20- git https://github.com/truemedian/zfetch
21- git https://github.com/ziglibs/known-folders
22- git https://github.com/yaml/libyaml
src/cmd/license.zig+1
......@@ -29,6 +29,7 @@ pub fn execute(args: [][]u8) !void {
2929 var master_list = List.init(gpa);
3030 errdefer master_list.deinit();
3131 try common.collect_pkgs(top_module, &master_list);
32 std.sort.sort(zigmod.Module, master_list.items, {}, zigmod.Module.lessThan);
3233
3334 var map = Map.init(gpa);
3435 errdefer map.deinit();