From e6d00ab1289c735e92c3beed5bb712e706b753d7 Mon Sep 17 00:00:00 2001 From: Slava <20563034+veaceslavdoina@users.noreply.github.com> Date: Tue, 15 Oct 2024 10:12:04 +0300 Subject: [PATCH] Update examples to use curl silent (#1) --- index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index 4090961..6294c57 100644 --- a/index.html +++ b/index.html @@ -20,7 +20,7 @@ # Install latest Codex
- curl https://get.codex.storage/install.sh | bash + curl -s https://get.codex.storage/install.sh | bash

@@ -28,7 +28,7 @@ # Install specific version of Codex
- curl https://get.codex.storage/install.sh | VERSION=0.1.7 bash + curl -s https://get.codex.storage/install.sh | VERSION=0.1.7 bash

@@ -36,7 +36,7 @@ # Install latest Codex with cirdl
- curl https://get.codex.storage/install.sh | INSTALL_CIRDL=true bash + curl -s https://get.codex.storage/install.sh | INSTALL_CIRDL=true bash

@@ -44,7 +44,7 @@ # On Windows with msys2 install Codex with required libraries
- curl https://get.codex.storage/install.sh | WINDOWS_LIBS=true INSTALL_CIRDL=true bash + curl -s https://get.codex.storage/install.sh | WINDOWS_LIBS=true INSTALL_CIRDL=true bash