Skip to content

Commit

Permalink
Fixed installation steps for Debian & Ubuntu (#1473) (#1475)
Browse files Browse the repository at this point in the history
* Fixed installation steps for Debian & Ubuntu

* Fixed incorrect path
  • Loading branch information
chrysle committed May 22, 2023
1 parent 5dc30bc commit 2e3272b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/installation/methods.yml
Expand Up @@ -37,13 +37,13 @@ tools:
package: https://packages.debian.org/sid/web/httpie
commands:
install:
- curl -SsL https://packages.httpie.io/deb/KEY.gpg | apt-key add -
- curl -SsL -o /etc/apt/sources.list.d/httpie.list https://packages.httpie.io/deb/httpie.list
- apt update
- apt install httpie
- curl -SsL https://packages.httpie.io/deb/KEY.gpg | sudo gpg --dearmor -o /usr/share/keyrings/httpie.gpg
# - curl -SsL -o /etc/apt/sources.list.d/httpie.list https://packages.httpie.io/deb/httpie.list
- sudo echo "deb [arch=amd64 signed-by=/usr/share/keyrings/httpie.gpg] https://packages.httpie.io/deb ./" > /etc/apt/sources.list.d/httpie.list
- sudo apt update
- sudo apt install httpie
upgrade:
- apt update
- apt upgrade httpie
- sudo apt update && sudo apt upgrade httpie

brew-mac:
title: Homebrew
Expand Down

0 comments on commit 2e3272b

Please sign in to comment.