From 52f24b443c56a2a80ef3e95b50a54e217d7446c8 Mon Sep 17 00:00:00 2001 From: Sharun Date: Tue, 12 Nov 2024 15:19:17 -0500 Subject: [PATCH] fix: update script path and use sh --- scripts/prebuild.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/prebuild.sh b/scripts/prebuild.sh index f06255d1bc..0050eaff7f 100755 --- a/scripts/prebuild.sh +++ b/scripts/prebuild.sh @@ -1,11 +1,11 @@ #!/bin/sh -SETUP_SCRIPT="./disable_in_app_purchases.sh" +SETUP_SCRIPT="./scripts/disable_in_app_purchases.sh" # Check if the environment variable BUILD_FOSS_ONLY is set if [ ! -z "$BUILD_FOSS_ONLY" ]; then # Run the setup script - bash "$SETUP_SCRIPT" + sh "$SETUP_SCRIPT" echo "In-app purchases disabled." else