Skip to content

Commit b01b60f

Browse files
updating order of install methods
1 parent 433ef78 commit b01b60f

File tree

1 file changed

+52
-50
lines changed

1 file changed

+52
-50
lines changed

README.md

Lines changed: 52 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -29,42 +29,34 @@ View future plans in the [Roadmap](#roadmap) section.
2929
---
3030
## Installation
3131

32-
* [Binary](#binary)
33-
* [Linux Package](#linux-packages)
34-
* [Docker Image](#docker-image)
3532
* [Homebrew](#homebrew)
3633
* [Winget](#winget)
34+
* [Linux Packages](#linux-packages)
35+
* [Docker Image](#docker-image)
36+
* [Binary](#binary)
3737
* [Source](#source)
3838

39-
### Binary
40-
41-
1. Head to the [releases](https://github.com/digitalghost-dev/poke-cli/releases) page of the project.
42-
2. Choose a version to download. The latest is best.
43-
3. Choose an operating system and click on the matching zipped folder to start the download.
44-
4. Extract the folder. The tool is ready to use.
45-
5. Either change directories into the extracted folder or move the binary to a chosen directory.
46-
6. Run the tool!
47-
48-
> [!IMPORTANT]
49-
> For macOS, you may have to allow the executable to run as it is not signed. Head to System Settings > Privacy & Security > scroll down and allow executable to run.
50-
51-
<details>
52-
53-
<summary>View Image of Settings</summary>
54-
55-
![settings](https://poke-cli-s3-bucket.s3.us-west-2.amazonaws.com/macos_privacy_settings.png)
5639

57-
</details>
40+
### Homebrew
41+
1. Install the Cask:
42+
```bash
43+
brew install --cask digitalghost-dev/tap/poke-cli
44+
````
45+
2. Verify install:
46+
```bash
47+
poke-cli -v
48+
```
5849

50+
### Winget
51+
1. Install the package:
52+
```powershell
53+
winget install poke-cli
54+
```
5955

60-
#### Example usage
61-
```bash
62-
# Windows
63-
.\poke-cli.exe pokemon charizard --types --abilities
64-
65-
# Unix
66-
.\poke-cli ability airlock --pokemon
67-
```
56+
2. Verify install:
57+
```bash
58+
poke-cli -v
59+
```
6860

6961
### Linux Packages
7062
[![Hosted By: Cloudsmith](https://img.shields.io/badge/OSS%20hosting%20by-cloudsmith-blue?logo=cloudsmith&style=flat-square)](https://cloudsmith.com)
@@ -99,35 +91,45 @@ Cloudsmith is a fully cloud-based service that lets you easily create, store, an
9991
# placed into the /app directory, run the program with './poke-cli'
10092
# example: ./poke-cli ability swift-swim
10193
```
94+
95+
### Binary
96+
97+
1. Head to the [releases](https://github.com/digitalghost-dev/poke-cli/releases) page of the project.
98+
2. Choose a version to download. The latest is best.
99+
3. Choose an operating system and click on the matching zipped folder to start the download.
100+
4. Extract the folder. The tool is ready to use.
101+
5. Either change directories into the extracted folder or move the binary to a chosen directory.
102+
6. Run the tool!
103+
104+
> [!IMPORTANT]
105+
> For macOS, you may have to allow the executable to run as it is not signed. Head to System Settings > Privacy & Security > scroll down and allow executable to run.
106+
107+
<details>
108+
109+
<summary>View Image of Settings</summary>
110+
111+
![settings](https://poke-cli-s3-bucket.s3.us-west-2.amazonaws.com/macos_privacy_settings.png)
112+
113+
</details>
114+
115+
116+
#### Example usage
117+
```bash
118+
# Windows
119+
.\poke-cli.exe pokemon charizard --types --abilities
102120
103-
### Homebrew
104-
1. Install the Cask:
105-
```bash
106-
brew install --cask digitalghost-dev/tap/poke-cli
107-
````
108-
2. Verify install:
109-
```bash
110-
poke-cli -v
111-
```
112-
113-
### Winget
114-
1. Install the package:
115-
```powershell
116-
winget install poke-cli
117-
```
118-
119-
2. Verify install:
120-
```bash
121-
poke-cli -v
122-
```
121+
# Unix
122+
.\poke-cli ability airlock --pokemon
123+
```
123124

124125
### Source
125126

126127
1. Run the following command:
127128
```bash
128129
go install github.com/digitalghost-dev/poke-cli@latest
129130
```
130-
2. The tool is ready to use!
131+
2. The tool should be ready to use if `$PATH` is set up.
132+
131133

132134
---
133135
## Usage

0 commit comments

Comments
 (0)