Refactor code format
This commit is contained in:
parent
12a66eb525
commit
cd3b63923c
2 changed files with 8 additions and 2 deletions
|
@ -8,7 +8,8 @@ else
|
||||||
archiveName="$(mktemp)";
|
archiveName="$(mktemp)";
|
||||||
destination="/var/lib/godot";
|
destination="/var/lib/godot";
|
||||||
|
|
||||||
if [ -d "$destination" ]; then
|
if [ -d "$destination" ]
|
||||||
|
then
|
||||||
rm -rf "$destination";
|
rm -rf "$destination";
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
@ -4,5 +4,10 @@ if [ ! "$UID" -eq 0 ]
|
||||||
then
|
then
|
||||||
sudo bash "$BASH_SOURCE";
|
sudo bash "$BASH_SOURCE";
|
||||||
else
|
else
|
||||||
apt install -y screen steam vim docker.io docker-compose;
|
apt install -y \
|
||||||
|
docker.io \
|
||||||
|
docker-compose \
|
||||||
|
screen \
|
||||||
|
steam \
|
||||||
|
vim;
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue