From 45765fd07cf8f81364931ea8b7935c26b768a14a Mon Sep 17 00:00:00 2001 From: repair Date: Wed, 24 Jan 2024 18:01:20 +0100 Subject: [PATCH] fix: correct flag for curl --- .github/workflows/debian-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/debian-release.yml b/.github/workflows/debian-release.yml index 71570ae4..5eed83cf 100644 --- a/.github/workflows/debian-release.yml +++ b/.github/workflows/debian-release.yml @@ -80,7 +80,7 @@ jobs: apt install -y curl - name: Download Debian 11 scaphandre package run: | - curl -o https://s3.fr-par.scw.cloud/scaphandre/x86_64/${{ env.DEB11PKG }} + curl -O https://s3.fr-par.scw.cloud/scaphandre/x86_64/${{ env.DEB11PKG }} - name: Install and run scaphandre Stdout exporter for 10 seconds run: | apt install -y ./${{ env.DEB11PKG }} @@ -100,7 +100,7 @@ jobs: apt install -y curl - name: Download Debian 12 scaphandre package run: | - curl -o https://s3.fr-par.scw.cloud/scaphandre/x86_64/${{ env.DEB12PKG }} + curl -O https://s3.fr-par.scw.cloud/scaphandre/x86_64/${{ env.DEB12PKG }} - name: Install and run scaphandre Stdout exporter for 10 seconds run: | apt install -y ./${{ env.DEB12PKG }}