ci: use quickget long arguments for readability

This commit is contained in:
Martin Wimpress 2024-05-03 02:31:03 +01:00 committed by Martin Wimpress
parent 5da3942278
commit 19539d7b31
1 changed files with 2 additions and 2 deletions

View File

@ -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)