Skip to content

Commit

Permalink
Use TARGET_BUILD_DIR instead of BUILT_PRODUCTS_DIR
Browse files Browse the repository at this point in the history
I forgot that this is where things are supposed to go when archiving.
  • Loading branch information
saagarjha committed Feb 24, 2024
1 parent febe9eb commit f7aabea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Ensemble.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -386,11 +386,11 @@
outputFileListPaths = (
);
outputPaths = (
"$(BUILT_PRODUCTS_DIR)/$(SHARED_SUPPORT_FOLDER_PATH)/ensemble_helper_v1.sh",
"$(TARGET_BUILD_DIR)/$(SHARED_SUPPORT_FOLDER_PATH)/ensemble_helper_v1.sh",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "# This is a copy files phase but it preserves the execute bit\nset -x\n\ncp \"$SRCROOT/macOS/ensemble_helper_v1.sh\" \"$BUILT_PRODUCTS_DIR/$SHARED_SUPPORT_FOLDER_PATH/\"\n";
shellScript = "# This is a copy files phase but it preserves the execute bit\nset -x\n\ncp \"$SCRIPT_INPUT_FILE_0\" \"$SCRIPT_OUTPUT_FILE_0\"\n";
};
/* End PBXShellScriptBuildPhase section */

Expand Down

0 comments on commit f7aabea

Please sign in to comment.