mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-01-12 22:51:50 +08:00
12 lines
292 B
Bash
12 lines
292 B
Bash
# Protect the copied header files from being modified. This is done in an attempt to avoid
|
|
# accidentally editing the copied headers.
|
|
|
|
# Ignore whitespace characters in paths
|
|
IFS=$'\n'
|
|
|
|
cd ${CONFIGURATION_BUILD_DIR}/${PUBLIC_HEADERS_FOLDER_PATH}
|
|
|
|
find * -name '*.h' | xargs chmod a-w
|
|
|
|
exit 0
|