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

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