Skip to content

Commit

Permalink
Fix description of the downloading of PHAR directly
Browse files Browse the repository at this point in the history
  • Loading branch information
Aeliot-Tm committed Sep 15, 2024
1 parent a320ef6 commit c6ae9a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,15 @@ Download PHAR directly to root directory of the project or in another place as y
```shell
# Do adjust the URL if you need a release other than the latest
wget -O pcsf-baseline.phar "https://github.com/Aeliot-Tm/php-cs-fixer-baseline/releases/latest/download/pcsf-baseline.phar"
wget -O pcsf-baseline.phar "https://github.com/Aeliot-Tm/php-cs-fixer-baseline/releases/latest/download/pcsf-baseline.phar.asc"
wget -O pcsf-baseline.phar.asc "https://github.com/Aeliot-Tm/php-cs-fixer-baseline/releases/latest/download/pcsf-baseline.phar.asc"

# Check that the signature matches
gpg --verify pcsf-baseline.phar.asc pcsf-baseline.phar

# Check the issuer (the ID can also be found from the previous command)
gpg --keyserver hkps://keys.openpgp.org --recv-keys 83F9945BC33EC39E9710206C8B4927076BA50A83

rm pcsf-baseline.phar
rm pcsf-baseline.phar.asc
chmod +x pcsf-baseline.phar
```

Expand Down

0 comments on commit c6ae9a7

Please sign in to comment.