File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -144,11 +144,12 @@ function pullNativeBuildProducts() {
144
144
145
145
local -r buildArtifactsToPull=(" MapboxVisionNative" " MapboxVisionARNative" " MapboxVisionSafetyNative" )
146
146
147
- for framework in " ${buildArtifactsToPull[@]} " ; do
148
- pullFramework " ${framework } "
147
+ for buildArtifact in " ${buildArtifactsToPull[@]} " ; do
148
+ pullFramework " ${buildArtifact } "
149
149
150
150
# copy pulled frameworks into Carthage/Build/iOS dir to allow building
151
- cp -a " Carthage/Build/iOS/${IOS_BUILD_TYPE} -${IOS_PLATFORM_TYPE} /${framework} .framework" " Carthage/Build/iOS"
151
+ echo " Copying ${buildArtifact} into Carthage/Build/iOS dir"
152
+ cp -a " Carthage/Build/iOS/${IOS_BUILD_TYPE} -${IOS_PLATFORM_TYPE} /${buildArtifact} .framework" " Carthage/Build/iOS"
152
153
done
153
154
154
155
echo
You can’t perform that action at this time.
0 commit comments