#!/bin/bash # Report any issues to the maintainer of this package. SDK='/usr/share/SDKs/iPhoneOS.sdk' if [[ $1 == remove || $1 == purge ]]; then rm -rf ${SDK:-/nonexist} || : fi exit 0