From 0a47adbcbf6b3993376192e387f9b2840d05c569 Mon Sep 17 00:00:00 2001 From: binaryFate Date: Sun, 10 Mar 2024 17:17:34 +0100 Subject: [PATCH] Fix indices used to check CLI and GUI file names in workflow --- .github/workflows/hashes.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/hashes.yaml b/.github/workflows/hashes.yaml index a9c9a321..a7ec726c 100644 --- a/.github/workflows/hashes.yaml +++ b/.github/workflows/hashes.yaml @@ -46,18 +46,18 @@ jobs: filename="${the_line[$length]}" echo "${filename}" } - # expects cli files between lines 2-13 and gui 14-18 (comments do not count, 1st line = 0) - # to add a new file to the cli, $num must be -gt 1 and -lt 15. - # gui $num is now -gt 14 and -lt 20 (new line has been added above) + # expects cli files between lines 2-14 and gui 15-19 (comments do not count, 1st line = 0) + # to add a new file to the cli, $num must be -gt 1 and -lt 16. + # gui $num is now -gt 15 and -lt 21 (new line has been added above) # a new gui file will only increase the -lt number by 1 # changes to extensions / new files must be reflected in the cli_files / gui_files lists below num=0 for line in "${lines[@]}"; do - if [ $num -gt 1 ] && [ $num -lt 14 ] ; then + if [ $num -gt 1 ] && [ $num -lt 15 ] ; then #CLI filename=$(get_filename "${line}") filenames_cli+=("${filename}") - elif [ $num -gt 13 ] && [ $num -lt 21 ] ; then + elif [ $num -gt 14 ] && [ $num -lt 21 ] ; then #GUI filename=$(get_filename "${line}") filenames_gui+=("${filename}")