Skip to content

Commit

Permalink
Merge pull request flutter#1406 from chinmaygarde/master
Browse files Browse the repository at this point in the history
Make path to PlistBuddy in the Xcode harness script for symbolicating the binary absolute
  • Loading branch information
chinmaygarde committed Sep 30, 2015
2 parents 0d98a31 + 5109253 commit e21099f
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
buildPhases = (
9E842EDC1B864EA100C84ECC /* Sources */,
9E842EDD1B864EA100C84ECC /* Frameworks */,
9EA9970A1B867E74007B8C62 /* Copy Application + Debugging Symbols */,
9EA9970A1B867E74007B8C62 /* Copy Application */,
9E3A4F5C1B8F82BE00095803 /* Nuke Fake Binary */,
9EB8E2DA1B90DF6F006BFAC2 /* Generate dSYM */,
);
Expand Down Expand Up @@ -120,14 +120,14 @@
shellScript = "rm ${BUILT_PRODUCTS_DIR}/${PRODUCT_NAME}.app/Harness";
showEnvVarsInLog = 0;
};
9EA9970A1B867E74007B8C62 /* Copy Application + Debugging Symbols */ = {
9EA9970A1B867E74007B8C62 /* Copy Application */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "Copy Application + Debugging Symbols";
name = "Copy Application";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
Expand All @@ -149,7 +149,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "ACTUAL_EXECUTABLE_NAME=`(PlistBuddy -c \"print CFBundleExecutable\" ${INFOPLIST_FILE})`\ndsymutil -o ${BUILT_PRODUCTS_DIR}/Harness.app.dSYM ${SOURCE_ROOT}/Application/${ACTUAL_EXECUTABLE_NAME}";
shellScript = "ACTUAL_EXECUTABLE_NAME=`(/usr/libexec/PlistBuddy -c \"print CFBundleExecutable\" ${INFOPLIST_FILE})`\ndsymutil -o ${BUILT_PRODUCTS_DIR}/Harness.app.dSYM ${SOURCE_ROOT}/Application/${ACTUAL_EXECUTABLE_NAME}";
};
/* End PBXShellScriptBuildPhase section */

Expand Down

0 comments on commit e21099f

Please sign in to comment.