29341915 A |
1 | #!/bin/sh |
2 | set -e |
3 | set -x |
4 | |
5 | case "$PLATFORM_NAME" in |
aad783a6 |
6 | iphoneos|appletvos|watchos|bridgeos) |
29341915 A |
7 | ln -hfs /usr/local/bin/dd "$DSTROOT"/bin/dd |
8 | ;; |
9 | macosx) |
10 | ;; |
11 | *) |
12 | echo "Unsupported platform: $PLATFORM_NAME" |
13 | exit 1 |
14 | ;; |
15 | esac |
16 | |