fix: add mkdir of "android/app/src/main/res/raw/" in postinstall (#8070)

This commit is contained in:
Rahim Rahman 2024-07-09 12:59:31 -06:00 committed by GitHub
parent 0fbeea83f3
commit b9f4000dd0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -42,5 +42,6 @@ if [ -z "$SOUNDS" ]; then
exit 1
else
echo "Copying sound assets for bundling"
mkdir -p "android/app/src/main/res/raw/"
cp $SOUNDS/* "android/app/src/main/res/raw/"
fi