Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge orphan commit that 1-10-stable was pointing to #313

Merged
merged 2 commits into from
Jul 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
22 changes: 22 additions & 0 deletions install_header_mappings_dir/after/Pods/Pods.xcodeproj
Expand Up @@ -223,6 +223,28 @@ Targets:
- Frameworks:
- Foundation.framework
- Resources: []
- Create Symlinks to Header Folders:
Input File List Paths: []
Input Paths: []
Output File List Paths: []
Output Paths: []
Shell Path: "/bin/sh"
Shell Script: |
cd "$CONFIGURATION_BUILD_DIR/$WRAPPER_NAME" || exit 1
if [ ! -d Versions ]; then
# Not a versioned framework, so no need to do anything
exit 0
fi

public_path="${PUBLIC_HEADERS_FOLDER_PATH#$CONTENTS_FOLDER_PATH/}"
if [ ! -f "$public_path" ]; then
ln -fs "${PUBLIC_HEADERS_FOLDER_PATH#$WRAPPER_NAME/}" "$public_path"
fi

private_path="${PRIVATE_HEADERS_FOLDER_PATH#$CONTENTS_FOLDER_PATH/}"
if [ ! -f "$private_path" ]; then
ln -fs "${PRIVATE_HEADERS_FOLDER_PATH#$WRAPPER_NAME/}" "$private_path"
fi
Build Configurations:
- Debug:
Build Settings:
Expand Down
4 changes: 4 additions & 0 deletions install_header_mappings_dir_macos/after/Pods/Pods.xcodeproj
Expand Up @@ -231,6 +231,10 @@ Targets:
Shell Path: "/bin/sh"
Shell Script: |
cd "$CONFIGURATION_BUILD_DIR/$WRAPPER_NAME" || exit 1
if [ ! -d Versions ]; then
# Not a versioned framework, so no need to do anything
exit 0
fi

public_path="${PUBLIC_HEADERS_FOLDER_PATH#$CONTENTS_FOLDER_PATH/}"
if [ ! -f "$public_path" ]; then
Expand Down