mirror of
https://github.com/bytedream/aion.git
synced 2025-05-10 12:25:08 +02:00
12 lines
258 B
Bash
12 lines
258 B
Bash
#!/bin/bash
|
|
|
|
if [ ! -d "/usr/local/aion-"]; then
|
|
apt-get install git
|
|
git --clone https://github.com/blueShard-dev/aion /tmp/aion_installation
|
|
bash /tmp/aion_installation/install.sh
|
|
|
|
rm -r /tmp/aion_installation
|
|
else
|
|
echo "Aion is already installed"
|
|
fi
|