From 818cc6c671381a7a402ed75483a1ed36a74e4231 Mon Sep 17 00:00:00 2001 From: kjuulh Date: Sat, 30 Nov 2024 11:49:23 +0100 Subject: [PATCH] feat: make curl silent" Signed-off-by: kjuulh --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 04a5361..3f83f1e 100644 --- a/install.sh +++ b/install.sh @@ -30,7 +30,7 @@ mkdir -p "${CONFIG_DIR}" # Download binary from S3 echo "Downloading binary..." -curl -L "https://api-minio.front.kjuulh.io/${S3_BUCKET}/releases/${APP_NAME}/${APP_VERSION}/${BINARY_NAME}" -o "${INSTALL_DIR}/${BINARY_NAME}" +curl -L -s "https://api-minio.front.kjuulh.io/${S3_BUCKET}/releases/${APP_NAME}/${APP_VERSION}/${BINARY_NAME}" -o "${INSTALL_DIR}/${BINARY_NAME}" # Make binary executable chmod +x "${INSTALL_DIR}/${BINARY_NAME}"