From d12551762f0b31bf171a67e87655affcbd080736 Mon Sep 17 00:00:00 2001 From: David Legrand <1110600+davlgd@users.noreply.github.com> Date: Fri, 23 Aug 2024 14:07:42 +0000 Subject: [PATCH] docs: fix build/curl instructions (#998) 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 ``` --- docs/fr/compile.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/fr/compile.md b/docs/fr/compile.md index a163068..919456f 100644 --- a/docs/fr/compile.md +++ b/docs/fr/compile.md @@ -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 ```