Skip to content

Commit

Permalink
Fix file integrity check with new gz files
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSandro2000 committed Jul 2, 2024
1 parent 5cc5988 commit 8441853
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions ci/scripts/check_file_integrity.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,8 @@ done
# Check if there are files or directories that are not in the array
for f in *; do
found=0
# echo "===: $f"
for g in "$@"; do
# echo "::: $g"
[ "$f" = "$g" ] && found=1
([ "$f" = "$g" ] || [ "$f" = "$g.gz" ]) && found=1
done
[ "$found" = 0 ] && echo "$f: in directory but not listed" && ok=0
done
Expand Down

0 comments on commit 8441853

Please sign in to comment.