mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-10 02:08:38 +09:00
Dactyloidae iOS initial commit
This commit is contained in:
parent
daa6179d22
commit
7154a0497e
2123 changed files with 197052 additions and 0 deletions
28
mobile/ios/bootstrap.sh
Normal file
28
mobile/ios/bootstrap.sh
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
#!/bin/sh
|
||||
|
||||
#
|
||||
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
# file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
#
|
||||
# Bootstrap the Carthage dependencies. If the Carthage directory
|
||||
# already exists then nothing is done. This speeds up builds on
|
||||
# CI services where the Carthage directory can be cached.
|
||||
#
|
||||
# Use the --force option to force a rebuild of the dependencies.
|
||||
#
|
||||
|
||||
if [ "$1" == "--force" ]; then
|
||||
rm -rf Carthage/*
|
||||
rm -rf ~/Library/Caches/org.carthage.CarthageKit
|
||||
fi
|
||||
|
||||
# Only enable this on the Xcode Server because it times out if it does not
|
||||
# get any output for some time while building the dependencies.
|
||||
|
||||
CARTHAGE_VERBOSE=""
|
||||
if [ ! -z "$XCS_BOT_ID" ]; then
|
||||
CARTHAGE_VERBOSE="--verbose"
|
||||
fi
|
||||
|
||||
carthage bootstrap $CARTHAGE_VERBOSE --platform ios --color auto --cache-builds
|
||||
Loading…
Add table
Add a link
Reference in a new issue