We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b5c589 commit 5e97775Copy full SHA for 5e97775
docs/source.md
@@ -17,16 +17,23 @@
17
18
2. Build and install
19
20
+ #### Unix-like systems
21
```sh
22
# installs to '/usr/local' by default; sudo may be required
23
$ make install
24
+
25
+ # install to a different location
26
+ $ make install prefix=/path/to/gh
27
```
28
- To install to a different location:
29
+ #### Windows
30
- $ make install prefix=/path/to/gh
31
+ # build the binary
32
+ > go build -o gh.exe ./cmd/gh
33
-
- Make sure that the `${prefix}/bin` directory is in your PATH.
34
+ There is no install step available on Windows.
35
36
3. Run `gh version` to check if it worked.
37
38
39
+ Run `.\gh version` to check if it worked.
0 commit comments