Initial commit - hello future of Spigot!
This commit is contained in:
17
rebuildPatches.sh
Executable file
17
rebuildPatches.sh
Executable file
@@ -0,0 +1,17 @@
|
||||
#!/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
|
||||
Reference in New Issue
Block a user