@@ -23,49 +23,48 @@ If you have [Golang] installed with a version >= 1.13 in your system and you hav
2323install ` miactl `  like this:
2424
2525``` sh 
26- go install github.com/mia-platform/miactl@0.3.1 
26+ go install github.com/mia-platform/miactl@0.4.0 
2727``` 
2828
2929Or like this if the ` install `  command is not available
3030
3131``` sh 
32- go get -u github.com/mia-platform/miactl@0.3.1 
32+ go get -u github.com/mia-platform/miactl@0.4.0 
3333``` 
3434
3535### Binary Download  
3636
37- You can install ` miactl `  with the use of ` curl `  or ` wget `  and downloading the latest packages available on GitHub:
37+ You can install ` miactl `  with the use of ` curl `  or ` wget `  and downloading the latest packages available on GitHub
38+ choosing the correct platform and operating system:
3839
3940``` sh 
40- curl -fsSL https://github.com/mia-platform/miactl/releases/download/v0.3.1/miactl_ $( uname ) _ $( uname -m ) .tar.gz  -o /tmp/miactl.tar.gz 
41+ curl -fsSL https://github.com/mia-platform/miactl/releases/download/v0.4.0/miactl-linux-amd64  -o /tmp/miactl
4142``` 
4243
4344``` sh 
44- wget -q https://github.com/mia-platform/miactl/releases/download/v0.3.1/miactl_ $( uname ) _ $( uname -m ) .tar.gz  -O /tmp/miactl.tar.gz 
45+ wget -q https://github.com/mia-platform/miactl/releases/download/v0.4.0/miactl-linux-amd64  -O /tmp/miactl
4546``` 
4647
4748After you have downloaded the file you can validate it against the checksum you can find at this [ url]  running the
4849command:
4950
5051``` sh 
51- sha256sum /tmp/miactl.tar.gz 
52+ sha256sum /tmp/miactl
5253``` 
5354
5455After you have validated that the downloaded file is correct, move the binary in your ` /usr/local/bin `  folder
5556
5657``` sh 
57- mkdir /tmp/miactl
58- tar -xvf /tmp/miactl.tar.gz --directory /tmp/miactl
59- mv /tmp/miactl/miactl /usr/local/bin
60- rm -fr /tmp/miactl /tmp/miactl.tar.gz
58+ chmod +x /tmp/miactl
59+ mv /tmp/miactl /usr/local/bin
6160``` 
6261
6362### Docker  
6463
6564If you want to run the cli in its environment or you want to test the cli you can use the Docker image:
6665
6766``` sh 
68- docker run ghr.io/mia-platform/miactl@0.3.1  miactl
67+ docker run ghr.io/mia-platform/miactl@0.4.0  miactl
6968``` 
7069
7170## Shell Autocompletion  
@@ -124,7 +123,7 @@ enable the autocompletion.
124123
125124[ Homebrew ] : https://brew.sh  " The Missing Package Manager for macOS (or Linux) " 
126125[ Golang ] : https://go.dev  " Build simple, secure, scalable systems with Go " 
127- [ url ] : https://github.com/mia-platform/miactl/releases/download/v0.3.1 /checksums.txt  " miactl checksums " 
126+ [ url ] : https://github.com/mia-platform/miactl/releases/download/v0.4.0 /checksums.txt  " miactl checksums " 
128127[ `bash-completion` ] : https://github.com/scop/bash-completion  " Programmable completion functions for bash " 
129128[ ` oh-my-zsh ` ] : https://ohmyz.sh  "Oh My Zsh is a delightful, open source, community-driven
130129	framework for managing your Zsh configuration"
0 commit comments