Cleanup and restructure the project
This commit is contained in:
parent
cd3d8fb27e
commit
8b66d99e73
21 changed files with 193 additions and 115 deletions
16
scripts/upstreamMerge.sh
Executable file
16
scripts/upstreamMerge.sh
Executable file
|
@ -0,0 +1,16 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
PS1="$"
|
||||
basedir="$1"
|
||||
workdir="$basedir/work"
|
||||
|
||||
function update {
|
||||
cd "$workdir/$1"
|
||||
git fetch && git reset --hard origin/master
|
||||
cd ../
|
||||
git add $1
|
||||
}
|
||||
|
||||
update Bukkit
|
||||
update CraftBukkit
|
||||
update Spigot
|
Loading…
Add table
Add a link
Reference in a new issue