DevEnv/Minecraft/setup_aclauncher

22 lines
225 B
Bash
Executable file

#!/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