application-services/build-carthage.sh

15 строки
453 B
Bash
Исходник Обычный вид История

#!/usr/bin/env bash
set -euvx
FRAMEWORK_NAME="${1:-MozillaAppServices.framework.zip}"
carthage update --platform iOS --cache-builds swift-protobuf
## When https://github.com/Carthage/Carthage/issues/2623 is fixed,
## carthage build --archive should work to produce a zip
carthage build --no-skip-current --platform iOS --verbose
# Exclude SwiftProtobuf.
2019-04-05 22:36:52 +03:00
rm -rf Carthage/Build/iOS/SwiftProtobuf.framework*
zip -r ${FRAMEWORK_NAME} Carthage/Build/iOS