Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-15 04:20:04 +01:00
18 Zeilen
420 B
Bash
18 Zeilen
420 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
basedir=$(dirname $(readlink -f $0))
|
||
|
echo "Rebuilding patch files from current fork state..."
|
||
|
|
||
|
function savePatches {
|
||
|
what=$1
|
||
|
target=$2
|
||
|
cd $basedir/$target/
|
||
|
git format-patch -o $basedir/${what}-Patches/ upstream/master
|
||
|
cd $basedir
|
||
|
git add $basedir/${what}-Patches
|
||
|
echo " Patches saved for $what to $what-Patches/"
|
||
|
}
|
||
|
|
||
|
savePatches Bukkit Spigot-API
|
||
|
savePatches CraftBukkit Spigot
|