Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
C
cocoapods
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gengmeiios
cocoapods
Commits
9ba56ef4
Commit
9ba56ef4
authored
Jan 31, 2018
by
Samuel Giddins
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add `set -o pipefail` to frameworks and resources copy scripts
parent
3036e4c7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
0 deletions
+2
-0
copy_resources_script.rb
lib/cocoapods/generator/copy_resources_script.rb
+1
-0
embed_frameworks_script.rb
lib/cocoapods/generator/embed_frameworks_script.rb
+1
-0
No files found.
lib/cocoapods/generator/copy_resources_script.rb
View file @
9ba56ef4
...
@@ -97,6 +97,7 @@ module Pod
...
@@ -97,6 +97,7 @@ module Pod
#!/bin/sh
#!/bin/sh
set -e
set -e
set -u
set -u
set -o pipefail
mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
...
...
lib/cocoapods/generator/embed_frameworks_script.rb
View file @
9ba56ef4
...
@@ -38,6 +38,7 @@ module Pod
...
@@ -38,6 +38,7 @@ module Pod
#!/bin/sh
#!/bin/sh
set -e
set -e
set -u
set -u
set -o pipefail
echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment