アプリケーションディレクトリでファイルを検索して削除するスクリプトが必要です。そこにない場合は、インストールを続行します。
削除する必要があるもの:
/Applications/Cydia.app/Sections/Messages(D3@TH's-Repo).png
それが見つからない場合は、インストールを続行します。そのファイルが見つかった場合は、インストールを続行する前に削除してください。
これは私が持っているものです:
#!/bin/bash
file="/Applications/Cydia.app/Sections/Messages(D3@TH's-Repo).png"
if [ -f "$file" ]
then
echo "$file delteling old icon"
rm -rf /Applications/Cydia.app/Sections/Messages(D3@TH's-Repo).png
else
echo "$file old icon deleted already moving on"
fi