mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-06 04:32:06 +00: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
|