22 lines
225 B
Bash
Executable file
22 lines
225 B
Bash
Executable file
#!/bin/bash
|
|
|
|
rm -rf ~/.atlauncher
|
|
mkdir ~/.atlauncher
|
|
|
|
mkdir ~/.atlauncher/bin
|
|
pushd ATLauncher
|
|
|
|
./gradlew build
|
|
|
|
pushd packaging/linux
|
|
|
|
chmod +x build.sh
|
|
./build.sh
|
|
pushd out
|
|
sudo dpkg -i ./atlauncher*.deb
|
|
popd
|
|
|
|
popd
|
|
|
|
|
|
popd
|