Skip to content

Commit a0fb0cc

Browse files
authored
docs(gno-tooling/cli): remove gno build (#1514)
- Remove `gno build` as it doesn't exist anymore (see: #1297) - s/go-binary/gofmt <details><summary>Contributors' checklist...</summary> - [x] Added new tests, or not needed, or not feasible - [x] Provided an example (e.g. screenshot) to aid review or the PR is self-explanatory - [x] Updated the official documentation or not needed - [x] No breaking changes were made, or a `BREAKING CHANGE: xxx` message was included in the description - [x] Added references to related issues and PRs - [x] Provided any useful hints for running manual tests - [x] Added new benchmarks to [generated graphs](https://gnoland.github.io/benchmarks), if any. More info [here](https://github.com/gnolang/gno/blob/master/.benchmarks/README.md). </details>
1 parent 50054f3 commit a0fb0cc

File tree

1 file changed

+2
-11
lines changed
  • docs/concepts/gno-tooling/cli

1 file changed

+2
-11
lines changed

docs/concepts/gno-tooling/cli/gno.md

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,10 @@ gno {SUB_COMMAND}
1818

1919
| Name | Description |
2020
| ------------ | ------------------------------------------ |
21-
| `build` | Builds a gno package. |
2221
| `test` | Tests a gno package. |
2322
| `precompile` | Precompiles a `.gno` file to a `.go` file. |
2423
| `repl` | Starts a GnoVM REPL. |
2524

26-
### `build`
27-
28-
#### **Options**
29-
30-
| Name | Type | Description |
31-
| --------- | ------- | ---------------------------------------------- |
32-
| `verbose` | Boolean | Displays extended information. |
33-
| go-binary | String | Go binary to use for building (default: `go`). |
34-
3525
### `test`
3626

3727
#### **Options**
@@ -52,8 +42,9 @@ gno {SUB_COMMAND}
5242
| ----------- | ------- | --------------------------------------------------------------- |
5343
| `verbose` | Boolean | Displays extended information. |
5444
| `skip-fmt` | Boolean | Skips the syntax checking of generated `.go` files. |
45+
| `gobuild` | Boolean | Run `go build` on generated `.go` files, ignoring test files. |
5546
| `go-binary` | String | The go binary to use for building (default: `go`). |
56-
| `go-binary` | String | The gofmt binary to use for syntax checking (default: `gofmt`). |
47+
| `gofmt` | String | The gofmt binary to use for syntax checking (default: `gofmt`). |
5748
| `output` | String | The output directory (default: `.`). |
5849

5950
### `repl`

0 commit comments

Comments
 (0)