mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-20 17:26:01 +08:00
9 lines
252 B
Bash
Executable File
9 lines
252 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# Format Java files with Spotless (keeping this for Eclipse formatter)
|
|
echo "Formatting Java files..."
|
|
|
|
dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
|
|
|
|
./formatters/gradlew -p formatters spotlessJavaApply --quiet |