-
Notifications
You must be signed in to change notification settings - Fork 2
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
Showing
2 changed files
with
9 additions
and
6 deletions.
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
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 |
---|---|---|
|
@@ -31,13 +31,13 @@ If you have [Golang] installed with a version >= 1.13 in your system and you hav | |
install `mlp` like this: | ||
|
||
```sh | ||
go install github.com/mia-platform/[email protected] | ||
go install github.com/mia-platform/[email protected].1 | ||
``` | ||
|
||
Or like this if the `install` command is not available | ||
|
||
```sh | ||
go get -u github.com/mia-platform/[email protected] | ||
go get -u github.com/mia-platform/[email protected].1 | ||
``` | ||
|
||
#### Binary Download | ||
|
@@ -46,11 +46,11 @@ You can install `mlp` with the use of `curl` or `wget` and downloading the lates | |
choosing the correct platform and operating system: | ||
|
||
```sh | ||
curl -fsSL --proto '=https' --tlsv1.2 https://github.com/mia-platform/mlp/releases/download/v2.0.0-rc/mlp-linux-amd64 -o /tmp/mlp | ||
curl -fsSL --proto '=https' --tlsv1.2 https://github.com/mia-platform/mlp/releases/download/v2.0.0-rc.1/mlp-linux-amd64 -o /tmp/mlp | ||
``` | ||
|
||
```sh | ||
wget -q --https-only --secure-protocol=TLSv1_2 https://github.com/mia-platform/mlp/releases/download/v2.0.0-rc/mlp-linux-amd64 -O /tmp/mlp | ||
wget -q --https-only --secure-protocol=TLSv1_2 https://github.com/mia-platform/mlp/releases/download/v2.0.0-rc.1/mlp-linux-amd64 -O /tmp/mlp | ||
``` | ||
|
||
After you have downloaded the file you can validate it against the checksum you can find at this [url] running the | ||
|
@@ -71,7 +71,7 @@ sudo install -g root -o root /tmp/mlp /usr/local/bin | |
If you want to run the cli in its environment or you want to test the cli you can use the Docker image: | ||
|
||
```sh | ||
docker run ghcr.io/mia-platform/mlp:v2.0.0-rc | ||
docker run ghcr.io/mia-platform/mlp:v2.0.0-rc.1 | ||
``` | ||
|
||
### Windows | ||
|