Files
CameraApp/build.sh
rattatwinko 3cb5a422a8
Some checks failed
Gradle Build / build (push) Has been cancelled
build
2025-05-24 19:31:52 +02:00

15 lines
361 B
Bash
Executable File

#!/bin/bash
# Universal build script for Maven and Gradle projects
echo "Current directory: $(pwd)"
# Check for Gradle or Gradle Wrapper
echo "Building Gradle project using wrapper: CameraApp"
cd "."
chmod +x ./gradlew
./gradlew build
cd - > /dev/null
echo "Build complete. Build artifacts should be in their respective target/ or build/libs/ directories."