Skip to content

Commit

Permalink
ci: update different icons
Browse files Browse the repository at this point in the history
  • Loading branch information
JangOetama authored Dec 17, 2024
1 parent a67e327 commit d36b8fe
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/convert.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,17 +56,16 @@ jobs:
echo "Processing $name..."
if [[ -f "$output_hash_name" && "$hash" != "$(cat $output_hash_name)" ]]; then
echo "Different hash, delete $name..."
[[ -f "$output_name" ]] && rm "$output_name"
[[ -f "$output_hash_name" ]] && rm "$output_hash_name"
fi
if [[ -f "$output_name" && -f "$output_hash_name" && "$hash" == "$(cat $output_hash_name)" ]]; then
echo "$name is already exist."
continue
fi
if [[ -f "$output_name" && -f "$output_hash_name" && "$hash" != "$(cat $output_hash_name)" ]]; then
echo "Different hash, delete $name..."
[[ -f "$output_name" ]] && rm "$output_name"
[[ -f "$output_hash_name" ]] && rm "$output_hash_name"
fi
install_dependencies
changed=true
Expand Down

0 comments on commit d36b8fe

Please sign in to comment.