7 lines
243 B
Bash
7 lines
243 B
Bash
#!/bin/sh
|
|
echo "Rebuilding server patches"
|
|
./gradlew rebuildAllServerPatches
|
|
echo "Rebuilding API patches"
|
|
./gradlew rebuildPaperApiPatches rebuildFoliaApiPatches
|
|
echo "Rebuilding build settings patches"
|
|
./gradlew rebuildFoliaSingleFilePatches |