mirror of
https://github.com/HackPlan/AsyncDisplayKit.git
synced 2026-01-12 22:44:08 +08:00
9 lines
311 B
Bash
Executable File
9 lines
311 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if ! [ -x "$(command -v infer)" ]; then
|
|
echo "infer not found"
|
|
echo "Install infer with homebrew: brew install infer"
|
|
else
|
|
infer --continue --reactive -- xcodebuild build -workspace AsyncDisplayKit.xcworkspace -scheme "AsyncDisplayKit-iOS" -configuration Debug -sdk iphonesimulator9.3
|
|
fi
|