Skip to content

Commit

Permalink
docs: fix build/curl instructions (#998)
Browse files Browse the repository at this point in the history
The `z` was missing and there was an error after download:

```
tar: Archive is compressed. Use -z option
tar: Error is not recoverable: exiting now
```
  • Loading branch information
davlgd authored Aug 23, 2024
1 parent 27ca1ae commit d125517
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/fr/compile.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ sudo make install
Vous pouvez maintenant compilez FrankenPHP :

```console
curl -L https://github.com/dunglas/frankenphp/archive/refs/heads/main.tar.gz | tar x
curl -L https://github.com/dunglas/frankenphp/archive/refs/heads/main.tar.gz | tar xz
cd frankenphp-main/caddy/frankenphp
CGO_CFLAGS=$(php-config --includes) CGO_LDFLAGS="$(php-config --ldflags) $(php-config --libs)" go build
```
Expand Down

0 comments on commit d125517

Please sign in to comment.