File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -635,7 +635,7 @@ jobs:
635
635
# get a list of all top-level namespaces (except system namespaces)
636
636
cat cpp_symbols.txt | grep -v '^std::' | grep -v '^__gnu_cxx::' | cut -d: -f1 | sort | uniq > cpp_namespaces.txt
637
637
# Filter out the renamed namespaces (f_b_*) and the public namespace (firebase)
638
- cat cpp_namespaces.txt | grep -v '^f_b_' | grep -v '^firebase$' | grep -v '^firestore$' > extra_namespaces.txt
638
+ cat cpp_namespaces.txt | grep -v '^f_b_' | grep -v '^firebase$' | > extra_namespaces.txt
639
639
# If there are any namespaces in this file, print an error.
640
640
if [[ -s extra_namespaces.txt ]]; then
641
641
echo '::error ::Unrenamed C++ namespaces in ${{ matrix.sdk_platform }}${{ matrix.suffix }} package:%0A'$(cat extra_namespaces.txt | tr '\n' ' ' | sed 's/ /%0A/g')
You can’t perform that action at this time.
0 commit comments