Skip to content

Commit 1359f0b

Browse files
edit readme slightly
1 parent 04ce0df commit 1359f0b

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Run `bootdev --version` on your command line to make sure the installation worke
8989

9090
**Optional troubleshooting:**
9191

92-
If you're getting a "command not found" error for `bootdev help`, it's most likely because the directory containing the `bootdev` program isn't in your [`PATH`](https://opensource.com/article/17/6/set-path-linux). You need to add the directory to your `PATH` by modifying your shell's configuration file. You probably need to add `$HOME/go/bin` (the default `GOBIN` directory where `go` installs programs) to your `PATH`:
92+
If you're getting a "command not found" error for `bootdev`, it's likely because the directory containing the `bootdev` program isn't in your [`PATH`](https://opensource.com/article/17/6/set-path-linux). You need to add the directory to `PATH` by modifying your shell's configuration file. In most cases, this means adding `$HOME/go/bin` (the default `GOBIN` directory where `go` installs programs):
9393

9494
```sh
9595
# For Linux/WSL
@@ -127,7 +127,7 @@ For lessons with HTTP tests, you can configure the CLI with a base URL that over
127127
- To set the base URL, run:
128128

129129
```sh
130-
bootdev config base_url <url>
130+
bootdev config base_url YOUR_URL
131131
```
132132

133133
_Make sure you include the protocol scheme (`http://`) in the URL._
@@ -151,10 +151,10 @@ The CLI text output is rendered with extra colors: green (e.g., success messages
151151
- To customize these colors, run:
152152

153153
```sh
154-
bootdev config colors --red <value> --green <value> --gray <value>
154+
bootdev config colors --red VALUE --green VALUE --gray VALUE
155155
```
156156

157-
_You can use an [ANSI color code](https://en.wikipedia.org/wiki/ANSI_escape_code#8-bit) or a hex string as the `<value>`._
157+
_You can use an [ANSI color code](https://en.wikipedia.org/wiki/ANSI_escape_code#8-bit) or a hex string as the `VALUE`._
158158

159159
- To get the current colors, run:
160160

0 commit comments

Comments
 (0)