ios-unit-tests: Started using rsync instead of cp -R to copy frameworks. (flutter/engine#9471)

* Started using rsync instead of cp -R to copy frameworks.

* Removed stray input files for xcode script.
This commit is contained in:
gaaclarke 2019-06-25 08:59:19 -07:00 committed by GitHub
parent 59bd2aecc0
commit d747d4146a

View File

@ -345,8 +345,8 @@
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "TARGET_FRAMEWORKS_PATH=\"$TARGET_BUILD_DIR/../Frameworks\"\nFRAMEWORK_PATH=`find $PWD/../../../../out/$FLUTTER_ENGINE -name Flutter.framework`\ncp -R \"$FRAMEWORK_PATH\" \"$TARGET_FRAMEWORKS_PATH\"\n";
shellPath = "/bin/sh -x";
shellScript = "TARGET_FRAMEWORKS_PATH=\"$TARGET_BUILD_DIR/../Frameworks\"\nFRAMEWORK_PATH=$PROJECT_DIR/../../../../out/$FLUTTER_ENGINE/Flutter.framework\nrsync -avzh \"$FRAMEWORK_PATH\" \"$TARGET_FRAMEWORKS_PATH\"\n";
};
/* End PBXShellScriptBuildPhase section */