Skip to content

Commit c5e1219

Browse files
authored
Merge pull request #3 from KKingZero/fix/install-artifact-urls
docs(install): match package artifact names to release CDN
2 parents 9b0e981 + 0f139e2 commit c5e1219

3 files changed

Lines changed: 12 additions & 10 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -153,12 +153,12 @@ Direct package artifact installs:
153153

154154
```bash
155155
# Debian / Ubuntu / Kali / Parrot
156-
curl -LO https://download.zypheron.net/v2.0.0/zypheron_2.0.0_linux_amd64.deb
157-
sudo apt install ./zypheron_2.0.0_linux_amd64.deb
156+
curl -LO https://download.zypheron.net/v2.0.0/zypheron_2.0.0_amd64.deb
157+
sudo apt install ./zypheron_2.0.0_amd64.deb
158158

159159
# Fedora / RHEL-family
160-
curl -LO https://download.zypheron.net/v2.0.0/zypheron_2.0.0_linux_amd64.rpm
161-
sudo dnf install ./zypheron_2.0.0_linux_amd64.rpm
160+
curl -LO https://download.zypheron.net/v2.0.0/zypheron-2.0.0-1.x86_64.rpm
161+
sudo dnf install ./zypheron-2.0.0-1.x86_64.rpm
162162
```
163163

164164
Once the package repositories are published, the intended commands are:

docs/INSTALL.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,12 @@ Until the external package repositories are published, install the package artif
7474

7575
```bash
7676
# Debian / Ubuntu / Kali / Parrot
77-
curl -LO https://download.zypheron.net/v2.0.0/zypheron_2.0.0_linux_amd64.deb
78-
sudo apt install ./zypheron_2.0.0_linux_amd64.deb
77+
curl -LO https://download.zypheron.net/v2.0.0/zypheron_2.0.0_amd64.deb
78+
sudo apt install ./zypheron_2.0.0_amd64.deb
7979

8080
# Fedora / RHEL-family
81-
curl -LO https://download.zypheron.net/v2.0.0/zypheron_2.0.0_linux_amd64.rpm
82-
sudo dnf install ./zypheron_2.0.0_linux_amd64.rpm
81+
curl -LO https://download.zypheron.net/v2.0.0/zypheron-2.0.0-1.x86_64.rpm
82+
sudo dnf install ./zypheron-2.0.0-1.x86_64.rpm
8383
```
8484

8585
Once package repositories are live, the intended commands are:

scripts/install/setup-hybrid.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
#!/usr/bin/env bash
22

33
# Zypheron bootstrap
4-
# Pasteable usage after clone:
5-
# git clone https://github.com/KKingZero/Zypheron-CLI.git && cd Zypheron-CLI && bash scripts/install/setup-hybrid.sh
4+
# Pasteable usage:
5+
# git clone https://github.com/KKingZero/Zypheron-CLI.git
6+
# cd Zypheron-CLI
7+
# bash scripts/install/setup-hybrid.sh
68
#
79
# Options:
810
# ZYPHERON_INSTALL_DIR=/path Install directory for the CLI binary

0 commit comments

Comments
 (0)