Skip to content

Commit 6321454

Browse files
committed
Fix path for include files in final package, which were mistakenly in include/include/firebase rather than include/firebase.
1 parent 7e1d453 commit 6321454

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build_scripts/other/package.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ cd "${origpath}"
2727
# Copy headers to packaged SDK.
2828
mkdir -p "${destpath}/include"
2929
cd "${sdkpath}"
30-
for incdir in */src/include/; do
31-
cp -af "${incdir}" "${destpath}/include/"
30+
for incdir in */src/include; do
31+
cp -af "${incdir}" "${destpath}/"
3232
done
3333
cd "${origpath}"
3434

0 commit comments

Comments
 (0)