readme: use curl to download binary

This commit is contained in:
Pierre Tachoire
2025-02-18 11:32:02 +01:00
parent 1a8cc2d019
commit cdcc5e106f

View File

@@ -39,13 +39,13 @@ Linux x86_64 and MacOS aarch64.
*For linux*
```console
wget -O lightpanda https://github.com/lightpanda-io/browser/releases/download/nightly/lightpanda-x86_64-linux && \
curl -L -o lightpanda https://github.com/lightpanda-io/browser/releases/download/nightly/lightpanda-x86_64-linux && \
chmod a+x ./lightpanda
```
*For MacOS*
```console
wget -O lightpanda https://github.com/lightpanda-io/browser/releases/download/nightly/lightpanda-aarch64-macos && \
curl -L -o lightpanda https://github.com/lightpanda-io/browser/releases/download/nightly/lightpanda-aarch64-macos && \
chmod a+x ./lightpanda
```