Waterfall + Pandacube patches = PandaCord
This commit is contained in:
28
pandacord
Normal file
28
pandacord
Normal file
@@ -0,0 +1,28 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
|
||||
|
||||
case "$1" in
|
||||
"rb" | "rbp" | "rebuild")
|
||||
scripts/rebuildPatches.sh
|
||||
;;
|
||||
"p" | "patch")
|
||||
scripts/build.sh
|
||||
;;
|
||||
"m" | "up" | "merge")
|
||||
scripts/mergeUpstream.sh
|
||||
;;
|
||||
"e" | "edit")
|
||||
scripts/edit.sh
|
||||
;;
|
||||
*)
|
||||
echo "PandaCord build tool command. This provides a variety of commands to control the PandaCord"
|
||||
echo "build. View below for details of the available commands."
|
||||
echo ""
|
||||
echo "Commands:"
|
||||
echo " * rb, rbp, rebuild | Rebuilds the patches"
|
||||
echo " * p, patch | Applies all the patches to BungeeCord / Waterfall"
|
||||
echo " * m, up, merge | Utility to aid in merging upstream"
|
||||
echo " * e, edit | Runs git rebase -i for PandaCord, allowing patches to be easily modified"
|
||||
;;
|
||||
esac
|
Reference in New Issue
Block a user