DevEnv/Minecraft/setup_atlauncher

23 lines
225 B
Text
Raw Normal View History

#!/bin/bash
rm -rf ~/.atlauncher
mkdir ~/.atlauncher
mkdir ~/.atlauncher/bin
pushd ATLauncher
./gradlew build
pushd packaging/linux
chmod +x build.sh
2024-03-14 20:34:25 -07:00
./build.sh
pushd out
sudo dpkg -i ./atlauncher*.deb
popd
popd
popd