Skip to content

Commit

Permalink
fix: update script path and use sh
Browse files Browse the repository at this point in the history
  • Loading branch information
sharunkumar committed Nov 12, 2024
1 parent 4d82078 commit 52f24b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/prebuild.sh
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 52f24b4

Please sign in to comment.