Files
aliasvault/apps/mobile-app/android/fdroid/run.sh
2025-11-03 21:17:32 +01:00

12 lines
404 B
Bash
Executable File

#!/bin/bash
set -e # Exit on any error, except where explicitly ignored
trap 'echo "🛑 Interrupted. Exiting..."; exit 130' INT # Handle Ctrl+C cleanly
# Build and run the Docker environment
echo "Building Docker images..."
if ! docker compose build; then
echo "⚠️ Warning: Docker build failed, continuing..."
fi
echo "Running fdroid-buildserver..."
docker compose run --rm fdroid-buildserver