From c6b10c0cb9bd832c92658c8a2571b51261f98301 Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Sun, 4 Jul 2021 04:24:11 -0700 Subject: [PATCH] rename `zig.sum` to `zigmod.sum` --- docs/commands/sum.md | 20 ++++++++++---------- src/cmd/sum.zig | 2 +- zig.sum => zigmod.sum | 0 3 files changed, 11 insertions(+), 11 deletions(-) rename zig.sum => zigmod.sum (100%) diff --git a/docs/commands/sum.md b/docs/commands/sum.md index a53c854c48219538a2dd315f0882fce149e71dcb..e805e084cbae30ac5e76fcd4bf5a2b6f1811c9d9 100644 --- a/docs/commands/sum.md +++ b/docs/commands/sum.md @@ -3,21 +3,21 @@ zigmod sum ``` -- This will generate a `zig.sum` file with the blake3 hashes of your modules. +- This will generate a `zigmod.sum` file with the blake3 hashes of your modules. -`zig.sum` may be checked into source control and there are plans to integrate it into the other commands in the future. +`zigmod.sum` may be checked into source control and there are plans to integrate it into the other commands in the future. Running it on Zigmod (as of this writing) itself yields: ``` blake3-22472b867734926b202c055892fb0abb03f91556cd88998e2fe77addb003b1dd v/git/github.com/yaml/libyaml/tag-0.2.5 -blake3-c9f1cfe1c2bc8f0f7886a29458985491ea15f74c78275c28ce2276007f94d492 git/github.com/nektro/zig-ansi -blake3-e7d7348c05ca69eab697c8a902126b6dcb49ac396ef22750b79a3e575fb74b0e git/github.com/ziglibs/known-folders +blake3-7fc0b46397932ea1f0726d42289606ca118cc745d88dd87c0d6a377ba7c6569f git/github.com/nektro/zig-ansi +blake3-35a1c330c9999876e71418a7d43ad24ca7d1e23c3b5576e5cb75667e3392cc10 git/github.com/ziglibs/known-folders blake3-77ce43ca22debd0e34b3b6b8dfc251e4242916b5eaf06bdefababda192bdec82 git/github.com/nektro/zig-licenses -blake3-69230386789a31ae4133bc7a119b860a39774ac83f97903ef826cc9b1a4e0ce2 git/github.com/truemedian/zfetch -blake3-3f88dfd50f56af596aced2819073c74a8d10cdba5a8c1be21e8c5d56086c0587 git/github.com/truemedian/hzzp -blake3-f7f97ba003d59243359f9f1b2a1a3af775c1655447611ff21d9b8946ff6f02ad git/github.com/alexnask/iguanaTLS -blake3-900f4c0cb1e7078b8e7a3f022efe81444cd353a1788eb520683512b7815b788a git/github.com/MasterQ32/zig-network +blake3-ec191c4930c6fbaf059fadccb1470500b77d01d48f3fa390793822e403d7a3dc git/github.com/truemedian/zfetch +blake3-98982125d0fbedc62e179e62081d2797a2b8a3623c42f9fd5d72cd56d6350714 git/github.com/truemedian/hzzp +blake3-e6901bd7432450d5b22b01880cc7fa3fa2433e766a527206f18b29c67c1349bb git/github.com/alexnask/iguanaTLS +blake3-21f91e48333ac0ca7f4704c96352831c25216e7056d02ce24de95d03fc942246 git/github.com/MasterQ32/zig-network blake3-754b1b7e57b716ca042a9fc5c262e4931a804bddd52df695ec2b5476d0df0005 git/github.com/MasterQ32/zig-uri -blake3-155960bc30c27ccee4f6f10cfb0398d1bcec367abaabb16f18de6176bd92112c git/github.com/nektro/zig-json -blake3-09698753782139ab4877d08f33235170836f68b73e482b65cdee5637a6addf86 v/http/aquila.red/1/nektro/range/v0.1.tar.gz/d2f72fdd +blake3-d2a61dbaa3505a69473a9c63e34c9abd6ba8d93055796ad4b1e5f5eb9982c815 git/github.com/nektro/zig-json +blake3-09698753782139ab4877d08f33235170836f68b73e482b65cdee5637a6addf86 git/github.com/nektro/zig-range ``` diff --git a/src/cmd/sum.zig b/src/cmd/sum.zig index 86faf3aa0e3823875725edb9d2f71264bc2259d8..c4d8ea73f80b29d853038dcc6f41cba053d44b4d 100644 --- a/src/cmd/sum.zig +++ b/src/cmd/sum.zig @@ -20,7 +20,7 @@ pub fn execute(args: [][]u8) !void { }); // - const f = try std.fs.cwd().createFile("zig.sum", .{}); + const f = try std.fs.cwd().createFile("zigmod.sum", .{}); defer f.close(); const w = f.writer(); diff --git a/zig.sum b/zigmod.sum similarity index 100% rename from zig.sum rename to zigmod.sum -- 2.54.0