From b9f4000dd0d78100fba12066e95954b883c2c664 Mon Sep 17 00:00:00 2001 From: Rahim Rahman Date: Tue, 9 Jul 2024 12:59:31 -0600 Subject: [PATCH] fix: add mkdir of "android/app/src/main/res/raw/" in postinstall (#8070) --- scripts/postinstall.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/postinstall.sh b/scripts/postinstall.sh index a2ce17a5f..6b1c32812 100755 --- a/scripts/postinstall.sh +++ b/scripts/postinstall.sh @@ -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