Update dev environment repos

This commit is contained in:
zontreck 2024-03-31 23:19:05 -07:00
parent baca57f7a4
commit 9774d9eadb
14 changed files with 43 additions and 9 deletions

1
Minecraft/ACLauncher Submodule

@ -0,0 +1 @@
Subproject commit 9134bc5d19872a02c47a6c0f993ab31985879242

@ -1 +1 @@
Subproject commit e859b38044f0eeaccfbce53f8c462be68aced2b9
Subproject commit ccd85ebeae67539e18d7fc33ac72063cf85ddfe7

@ -0,0 +1 @@
Subproject commit 304d09d3b3622671f44260aa5354240f722c8a8c

@ -1 +1 @@
Subproject commit 16587481d52f9c6cc9461dd859d442ea3adce693
Subproject commit 3bd7bcf3ee1c663f393c82e845a777dfa2d7d5b4

@ -0,0 +1 @@
Subproject commit 18f2a8437f18625ae1d7ed7648584fb1bb06afaa

@ -1 +1 @@
Subproject commit 1a681d4c0a037193e14dd3cd0c781ebf38b9e47b
Subproject commit 58cc93c5797fb3c4eae165a6d6d1da9854a0f0d8

@ -1 +1 @@
Subproject commit 1fbd10471ffa8e3d51989c4574f925033ef08a56
Subproject commit 7697043b79047b9729d94ed1c16e438a964e64e2

@ -1 +1 @@
Subproject commit e5ac82527824b6176e79a8f3c12deed01f94faae
Subproject commit 7813fcc9f766a3b5afee4fe16610677ad1593570

22
Minecraft/setup_aclauncher Executable file
View file

@ -0,0 +1,22 @@
#!/bin/bash
rm -rf ~/.aclauncher
mkdir ~/.aclauncher
mkdir ~/.aclauncher/bin
pushd ACLauncher
./gradlew build
pushd packaging/linux
chmod +x build.sh
./build.sh
pushd out
sudo dpkg -i ./aclauncher*.deb
popd
popd
popd