Skip to content
This repository was archived by the owner on Nov 26, 2024. It is now read-only.

Commit f2a0f14

Browse files
author
Michel Casabianca
committed
Added other installation methods in README
1 parent 43b66fd commit f2a0f14

1 file changed

Lines changed: 15 additions & 2 deletions

File tree

README.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,27 @@ This tool parses Go binary dependencies and calls [NVD database](https://nvd.nis
1919

2020
## Installation
2121

22-
Download binary for your platform in [latest release](https://github.com/intercloud/gobinsec/releases). Rename it *gobinsec*, make it executable with `chmod +x gobinsec` and move it somewhere in your *PATH*.
22+
To install Gobinsec, type following command:
2323

24-
If Go is already installed on your machine, you can also build and install it in your *GOPATH* with:
24+
```
25+
$ sh -c "$(curl -L https://github.com/intercloud/gobinsec/releases/latest/download/install)"
26+
```
27+
28+
Or (if you don't have *curl* installed):
29+
30+
```
31+
$ sh -c "$(wget -O - https://github.com/intercloud/gobinsec/releases/latest/download/install)"
32+
```
33+
34+
Alternatively, if Go is already installed on your machine, you can also build and install latest version in your *GOPATH* with:
2535

2636
```
2737
$ go install github.com/intercloud/gobinsec@latest
2838
```
2939

40+
Finally, you can download binary for your platform in [latest release](https://github.com/intercloud/gobinsec/releases). Rename it *gobinsec*, make it executable with `chmod +x gobinsec` and move it somewhere in your *PATH*.
41+
42+
3043
## Usage
3144

3245
To analyze given binary:

0 commit comments

Comments
 (0)