Waterfall + Pandacube patches = PandaCord

This commit is contained in:
Marc Baloup
2021-08-13 20:23:24 +02:00
parent 0aaf9e4c58
commit 53f5c18f14
19 changed files with 3531 additions and 292 deletions

28
pandacord Normal file
View 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