-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7376f4b
commit abf66e0
Showing
1 changed file
with
25 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,7 +45,7 @@ htb-cli version | |
Stable version (main branch): v1.5.1 | ||
``` | ||
|
||
## Development version | ||
## Development version from remote | ||
|
||
The **development version (dev branch)** can be installed using the following command: | ||
|
||
|
@@ -58,6 +58,30 @@ htb-cli version | |
Development version (dev branch): a4cab218bb5f9851028091eb74469d4e21c469d0 | ||
``` | ||
|
||
## Development version from sources | ||
|
||
```bash | ||
git clone [email protected]:GoToolSharing/htb-cli.git | ||
Cloning into 'htb-cli'... | ||
remote: Enumerating objects: 1756, done. | ||
remote: Counting objects: 100% (224/224), done. | ||
remote: Compressing objects: 100% (131/131), done. | ||
remote: Total 1756 (delta 106), reused 142 (delta 77), pack-reused 1532 | ||
Receiving objects: 100% (1756/1756), 4.21 MiB | 3.27 MiB/s, done. | ||
Resolving deltas: 100% (1083/1083), done. | ||
``` | ||
|
||
```bash | ||
cd htb-cli | ||
git checkout dev | ||
go install . | ||
``` | ||
|
||
```bash | ||
htb-cli version | ||
Development version (dev branch): a4cab218bb5f9851028091eb74469d4e21c469d0 | ||
``` | ||
|
||
## Pre-compiled binaries | ||
|
||
**Pre-compiled binaries** are available with each release, allowing users to download the program without having to build it. | ||
|