Skip to content

Commit

Permalink
Fix template naming and update README (#461)
Browse files Browse the repository at this point in the history
  • Loading branch information
tulioz authored Nov 20, 2024
1 parent f1cbd91 commit a8a2b09
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 3 deletions.
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
```

### 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

0 comments on commit a8a2b09

Please sign in to comment.