Files
pnoise/build.sh
rattatwinko 138f8e20c1
Some checks failed
Gradle Build / build (push) Has been cancelled
initial pnoise commit
+ Main Class
    + Perlin Noise Module
Currently only generates 2D , i think
2025-05-21 18:37:47 +02:00

15 lines
358 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: pnoise"
cd "."
chmod +x ./gradlew
./gradlew build
cd - > /dev/null
echo "Build complete. Build artifacts should be in their respective target/ or build/libs/ directories."