17 lines
553 B
Bash
Executable File
17 lines
553 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# download_dependencies.sh
|
|
#
|
|
# Downloads all compiled framework flavors in from Artifactory.
|
|
#
|
|
|
|
# Create new aggregate builds
|
|
|
|
if [ -z $ARTIFACTORY_URL ]; then
|
|
ARTIFACTORY_URL="https://oneartifactoryprod.verizon.com/artifactory"
|
|
fi
|
|
|
|
# Remote View Versions
|
|
#BUILD_DIR=$(xcodebuild -showBuildSettings -project ../MVMCore/MVMCore.xcodeproj | grep -w -o 'BUILD_DIR = .*' | cut -d\ -f3-)
|
|
./download_framework.sh $ARTIFACTORY_URL "./MVMCore.framework" BPHV_MobileFirst_IOS/com/vzw/hss/myverizon/MVMCore/1.0/MVMCore-1.0-Debug-SNAPSHOT.zip
|