feat: Add comment when file is bigger than original

This commit is contained in:
Simon 2021-04-29 22:02:56 +02:00
parent f6902f3e50
commit cfb40dc476
1 changed files with 2 additions and 0 deletions

View File

@ -107,6 +107,8 @@ optimizer_git_image() {
elif [ "$current_size" -lt "$old_size" ]; then
git add $file
git amend-to $last_file_update_commit_hash
else
echo "😳 file '$file' is bigger than original file..."
fi
done
}