diff options
author | nea <nea@nea.moe> | 2023-11-01 21:11:09 +0100 |
---|---|---|
committer | nea <nea@nea.moe> | 2023-11-01 21:11:09 +0100 |
commit | 21ca764e26fdbb903ce380874cc2798f17de9034 (patch) | |
tree | 52931b66e52120a22d20354d0fe1adb26876cded /install.sh | |
parent | 297cb01f220a617dd08096467978b2fccbc27695 (diff) | |
download | ModernJavaLauncher-21ca764e26fdbb903ce380874cc2798f17de9034.tar.gz ModernJavaLauncher-21ca764e26fdbb903ce380874cc2798f17de9034.tar.bz2 ModernJavaLauncher-21ca764e26fdbb903ce380874cc2798f17de9034.zip |
Make MJL package the agent
Diffstat (limited to 'install.sh')
-rwxr-xr-x | install.sh | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -2,9 +2,9 @@ set -euo pipefail -rm -f ~/.local/share/PrismLauncher/instances/1.8.9/.minecraft/mods/examplemod-* -./gradlew :build :target:build -cp ./build/libs/examplemod-1.0.0.jar ~/.local/share/PrismLauncher/instances/1.8.9/.minecraft/mods +rm -f ~/.local/share/PrismLauncher/instances/1.8.9/.minecraft/mods/ModernJavaLauncher-* +./gradlew :agent:build :build +cp ./build/libs/ModernJavaLauncher-1.0.0.jar ~/.local/share/PrismLauncher/instances/1.8.9/.minecraft/mods |