From 5be3ee93f266fdc1903c3ce6113e650f54ebf187 Mon Sep 17 00:00:00 2001 From: Povilas Balciunas Date: Fri, 24 Oct 2025 15:40:10 +0300 Subject: [PATCH] Fix installation commands MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There was a double use of '&&' resulting in an error: ➜ /tmp curl -L -o lightpanda \ https://github.com/lightpanda-io/browser/releases/download/nightly/lightpanda-aarch64-macos && \ && chmod a+x ./lightpanda sh: parse error near `&&' --- src/content/open-source/installation.mdx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/content/open-source/installation.mdx b/src/content/open-source/installation.mdx index 71dfb6a..32fe306 100644 --- a/src/content/open-source/installation.mdx +++ b/src/content/open-source/installation.mdx @@ -26,29 +26,29 @@ Linux and MacOS. ### Linux x86_64 ```bash copy curl -L -o lightpanda \ - https://github.com/lightpanda-io/browser/releases/download/nightly/lightpanda-x86_64-linux \ - && chmod a+x ./lightpanda + https://github.com/lightpanda-io/browser/releases/download/nightly/lightpanda-x86_64-linux && \ + chmod a+x ./lightpanda ``` ### Linux aarch64 ```bash copy curl -L -o lightpanda \ https://github.com/lightpanda-io/browser/releases/download/nightly/lightpanda-aarch64-linux && \ - && chmod a+x ./lightpanda + chmod a+x ./lightpanda ``` ### MacOS aarch64 ```sh copy curl -L -o lightpanda \ https://github.com/lightpanda-io/browser/releases/download/nightly/lightpanda-aarch64-macos && \ - && chmod a+x ./lightpanda + chmod a+x ./lightpanda ``` ### MacOS x86_64 ```sh copy curl -L -o lightpanda \ https://github.com/lightpanda-io/browser/releases/download/nightly/lightpanda-x86_64-macos && \ - && chmod a+x ./lightpanda + chmod a+x ./lightpanda ``` *For Windows + WSL2*