DevEnv/Minecraft/setup_aclauncher

23 lines
225 B
Text
Raw Permalink Normal View History

2024-03-31 23:19:05 -07:00
#!/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