23 lines
225 B
Text
23 lines
225 B
Text
|
#!/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
|