mirror of
https://github.com/GayPizzaSpecifications/foundation.git
synced 2025-08-03 13:31:32 +00:00
16 lines
293 B
Bash
Executable File
16 lines
293 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
rm -rf artifacts/
|
|
|
|
mkdir -p artifacts/
|
|
mkdir -p artifacts/build/manifests
|
|
cp build/manifests/update.json artifacts/build/manifests/
|
|
|
|
find . -name "*-plugin.jar" | while read -r jar
|
|
do
|
|
DN=`dirname ${jar}`
|
|
mkdir -p "artifacts/$DN"
|
|
cp $jar "artifacts/$jar"
|
|
done
|