Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: rename deb and rpm packages #811

Merged
merged 1 commit into from
May 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions website/docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,13 @@ echo "deb https://artifacts.crowdin.com/repo/deb/ /" > /etc/apt/sources.list.d/c
And your repository is ready for use. You can install the Crowdin CLI Debian package with:

```bash
sudo apt-get update && sudo apt-get install crowdin3
sudo apt-get update && sudo apt-get install crowdin
```

To install the Crowdin CLI manually:

```bash
wget https://artifacts.crowdin.com/repo/deb/crowdin3.deb -O crowdin.deb
wget https://artifacts.crowdin.com/repo/deb/crowdin.deb -O crowdin.deb
sudo dpkg -i crowdin.deb
```

Expand Down Expand Up @@ -104,14 +104,14 @@ autorefresh=1
And your repository is ready for use. You can now install Crowdin CLI with one of the following commands:

```bash
sudo yum install crowdin3
sudo dnf install crowdin3
sudo yum install crowdin
sudo dnf install crowdin
```

To install the Crowdin CLI manually:

```bash
wget https://artifacts.crowdin.com/repo/rpm/crowdin3.rpm -O crowdin.rpm
wget https://artifacts.crowdin.com/repo/rpm/crowdin.rpm -O crowdin.rpm
sudo rpm -U crowdin.rpm
```

Expand Down
Loading