-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fc465fc
commit bcd971b
Showing
4 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
File renamed without changes.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/usr/bin/env bash | ||
|
||
read -p 'Input file to patch -> ' originFile | ||
|
||
read -p 'Patch everything or just FlameCord and Bungee-specific classes?(everything/specific) -> ' everspec | ||
|
||
if [[ ""$everspec"" = everything ]]; then | ||
jar uf $originFile net/* | ||
jar uf $originFile com/* | ||
jar uf $originFile gnu/* | ||
jar uf $originFile io/* | ||
jar uf $originFile joptsimple/* | ||
jar uf $originFile META-INF/* | ||
jar uf $originFile mojang-translations/* | ||
jar uf $originFile org/* | ||
elif [[ ""$everspec"" = specific ]]; then | ||
jar uf $originFile net/* | ||
jar uf $originFile com/* | ||
jar uf $originFile META-INF/* | ||
fi |
Empty file.