authorgravatar for hello@nektro.netMeghan <hello@nektro.net> 2020-11-21 16:12:08 -08:00
committergravatar for hello@nektro.netMeghan <hello@nektro.net> 2020-11-21 16:12:08 -08:00
log3d495960995655761c76ea6ada0d772af7d1d4e0
tree510618dce9e6f5621c24c59cd5df18a6fac5d8f7
parent90cb4cc5acf8f281649ee7c305e73a2bafc68503

temporarily remove the add command


2 files changed, 3 insertions(+), 1 deletions(-)

README.md+2
...@@ -42,6 +42,7 @@ zigmod init [name] [entry_file]...@@ -42,6 +42,7 @@ zigmod init [name] [entry_file]
42- `[entry_file]` defaults to `src/main.zig`42- `[entry_file]` defaults to `src/main.zig`
43- This command will create a `zig.mod` file in the root of your project. It is in yaml syntax.43- This command will create a `zig.mod` file in the root of your project. It is in yaml syntax.
4444
45<!--
45### `add` command46### `add` command
46```47```
47zigmod add <type> <path>48zigmod add <type> <path>
...@@ -49,6 +50,7 @@ zigmod add <type> <path>...@@ -49,6 +50,7 @@ zigmod add <type> <path>
4950
50- `<type>` is the type of package we're adding.51- `<type>` is the type of package we're adding.
51- `<path>` is the URL to the package you'd like to include.52- `<path>` is the URL to the package you'd like to include.
53-->
5254
53#### Available types55#### Available types
54- `git`56- `git`
src/main.zig+1-1
...@@ -8,7 +8,7 @@ const u = @import("./util/index.zig");...@@ -8,7 +8,7 @@ const u = @import("./util/index.zig");
88
9const commands = struct {9const commands = struct {
10 const init = @import("./cmd_init.zig");10 const init = @import("./cmd_init.zig");
11 const add = @import("./cmd_add.zig");11 // const add = @import("./cmd_add.zig");
12 const fetch = @import("./cmd_fetch.zig");12 const fetch = @import("./cmd_fetch.zig");
13};13};
1414