From 19539d7b31a354d998f50283e5796aa34c1a9883 Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Fri, 3 May 2024 02:31:03 +0100 Subject: [PATCH] ci: use quickget long arguments for readability --- .github/workflows/quickget-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/quickget-tests.yml b/.github/workflows/quickget-tests.yml index a35820a..beea015 100644 --- a/.github/workflows/quickget-tests.yml +++ b/.github/workflows/quickget-tests.yml @@ -35,7 +35,7 @@ jobs: run: | mkdir -p results echo -e "\n\n Supported:\n\n" - ./quickget -l | tee -a results/supported.txt + ./quickget --list | tee -a results/supported.txt echo -e "\n\nAll supported OS variants: $(cat results/supported.txt | wc -l)" echo -e "\n\n Finished\n\n" @@ -108,7 +108,7 @@ jobs: export TERM=xterm-256color echo -e "\n\n ISOs availability:\n\n" mkdir -p results - ./quickget -c | tee -a check.txt + ./quickget --check | tee -a check.txt cat check.txt | sort > results/checks.txt GOOD=$(cat results/checks.txt | grep 'http' | wc -l) WINDOWS=$(cat results/checks.txt | grep 'windows' | wc -l)