From 58920dae74dfb3e13db1fbc1051176bf62236cfc Mon Sep 17 00:00:00 2001 From: IThundxr Date: Mon, 29 Jan 2024 18:13:02 -0500 Subject: [PATCH] slight renaming & cleanup --- oddities/README.md | 8 ++++++++ oddities/{doIt.sh => compile.sh} | 2 +- oddities/{stuff => modfiles}/META-INF/mods.toml | 0 oddities/{stuff => modfiles}/pack.mcmeta | 0 4 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 oddities/README.md rename oddities/{doIt.sh => compile.sh} (81%) rename oddities/{stuff => modfiles}/META-INF/mods.toml (100%) rename oddities/{stuff => modfiles}/pack.mcmeta (100%) diff --git a/oddities/README.md b/oddities/README.md new file mode 100644 index 0000000000..45cd23aa32 --- /dev/null +++ b/oddities/README.md @@ -0,0 +1,8 @@ +# Quark Oddities Compilation + +Steps: +1. run `./compile.sh` +2. Profit + +What if I'm on windows? +If your on windows, then I really don't know, just like run the commands inside compile.sh somehow? \ No newline at end of file diff --git a/oddities/doIt.sh b/oddities/compile.sh similarity index 81% rename from oddities/doIt.sh rename to oddities/compile.sh index 7303c97ee4..09fab79cf5 100755 --- a/oddities/doIt.sh +++ b/oddities/compile.sh @@ -1,3 +1,3 @@ rm -f ./*.jar -cd ./stuff +cd ./modfiles jar --create --file=../QuarkOddities-1.20.1.jar * \ No newline at end of file diff --git a/oddities/stuff/META-INF/mods.toml b/oddities/modfiles/META-INF/mods.toml similarity index 100% rename from oddities/stuff/META-INF/mods.toml rename to oddities/modfiles/META-INF/mods.toml diff --git a/oddities/stuff/pack.mcmeta b/oddities/modfiles/pack.mcmeta similarity index 100% rename from oddities/stuff/pack.mcmeta rename to oddities/modfiles/pack.mcmeta