blob: de82f16b2e6420a27de62b7c64756179867d3a47 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/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
|