File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -153,14 +153,17 @@ nm ~/Library/Developer/Xcode/DerivedData/TestPkg-ObjC/Build/Products/Debug/TestP
153
153
# return exit code 1, which will cause the set pipefail to terminate execution.
154
154
# To avoid this, `|| true` ensures the exit code always indicates success.
155
155
DIFF=$(
156
- git diff --no-index \
156
+ git diff --no-index --output-indicator-new= " ? " \
157
157
objc_symbols_without_linker_flag.txt \
158
158
objc_symbols_with_linker_flag.txt \
159
159
|| true
160
160
)
161
161
if [[ -n " $DIFF " ]]; then
162
162
echo " Failure: Unlinked Objective-C symbols have been detected:"
163
163
echo " $DIFF "
164
+ echo -n " 💡 To fix, follow the process shown in "
165
+ echo -n " https://github.com/firebase/firebase-ios-sdk/pull/12534 for the "
166
+ echo " above symbols that are prefixed with ?"
164
167
exit 1
165
168
else
166
169
echo " Success: No unlinked Objective-C symbols have been detected."
You can’t perform that action at this time.
0 commit comments