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

Fix template naming and update README #461

Merged
merged 1 commit into from
Nov 20, 2024
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ archives:
nfpms:
- id: packages
file_name_template: "{{ .ConventionalFileName }}"
vendor: "Aviator"
homepage: "https://aviator.co"
maintainer: "Masaya Suzuki <[email protected]>"
Expand Down
36 changes: 34 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,15 +136,47 @@ yay av-cli

## Debian/Ubuntu

Download the `.deb` file from the [releases page](https://github.com/aviator-co/av/releases).
Add Aviator to your APT repositories.

```sh
echo "deb [trusted=yes] https://apt.fury.io/aviator/ /" > \
/etc/apt/sources.list.d/fury.list
```
And then apt install.
```sh
sudo apt update
sudo apt install av
tulioz marked this conversation as resolved.
Show resolved Hide resolved
```

### Alternatively
If you'd prefer you can download the `.deb` file from the [releases page](https://github.com/aviator-co/av/releases).

```sh
apt install ./av_$VERSION_linux_$ARCH.deb
```

## RPM-based systems
Add the following file `/etc/yum.repos.d/fury.repo`.
```conf
[fury]
name=Gemfury Private Repo
baseurl=https://yum.fury.io/aviator/
enabled=1
gpgcheck=0
```

Run the following command to confirm the configuration is working.
```sh
yum --disablerepo=* --enablerepo=fury list available
```

And then run yum install.
```sh
sudo yum install av
```

Download the `.rpm` file from the [releases page](https://github.com/aviator-co/av/releases).
### Alternatively
If you'd prefer you can download the `.rpm` file from the [releases page](https://github.com/aviator-co/av/releases).

```sh
rpm -i ./av_$VERSION_linux_$ARCH.rpm
Expand Down