2021-05-27 19:06:29 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -ev
|
|
|
|
|
|
|
|
# Archives the Carthage packages, and prints the name of the archive
|
|
|
|
|
2022-04-18 06:14:03 +02:00
|
|
|
# Employing a workaround until Xcode 12 builds are fixed
|
|
|
|
SCRIPTPATH="$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
|
|
|
|
source "${SCRIPTPATH}"/carthage.sh build --no-skip-current
|
|
|
|
source "${SCRIPTPATH}"/carthage.sh archive
|
2021-05-27 19:06:29 +02:00
|
|
|
|
|
|
|
export ARCHIVE_PATH="UnrarKit.framework.zip"
|