Refactor code format

This commit is contained in:
Manuel Thalmann 2023-01-23 16:16:26 +01:00
parent 55128543bd
commit 9880c6b787
2 changed files with 8 additions and 2 deletions

View file

@ -8,7 +8,8 @@ else
archiveName="$(mktemp)";
destination="/var/lib/godot";
if [ -d "$destination" ]; then
if [ -d "$destination" ]
then
rm -rf "$destination";
fi

View file

@ -4,5 +4,10 @@ if [ ! "$UID" -eq 0 ]
then
sudo bash "$BASH_SOURCE";
else
apt install -y screen steam vim docker.io docker-compose;
apt install -y \
docker.io \
docker-compose \
screen \
steam \
vim;
fi