mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-29 12:27:59 +01:00
0d3f1faa0d
By: md_5 <md_5@live.com.au>
11 lines
172 B
Bash
Executable File
11 lines
172 B
Bash
Executable File
#!/bin/bash
|
|
basedir=`pwd`
|
|
function update {
|
|
cd $basedir/$1
|
|
git fetch && git reset --hard origin/master
|
|
cd ../
|
|
git add $1
|
|
}
|
|
update Bukkit
|
|
update CraftBukkit
|