diff --git a/scripts/Software/Godot/install.sh b/scripts/Software/Godot/install.sh
index 32eb0a13..b3d619b1 100755
--- a/scripts/Software/Godot/install.sh
+++ b/scripts/Software/Godot/install.sh
@@ -8,7 +8,8 @@ else
     archiveName="$(mktemp)";
     destination="/var/lib/godot";
 
-    if [ -d "$destination" ]; then
+    if [ -d "$destination" ]
+    then
         rm -rf "$destination";
     fi
 
diff --git a/scripts/Software/common-apt/install.sh b/scripts/Software/common-apt/install.sh
index ec0276e7..dad0b482 100755
--- a/scripts/Software/common-apt/install.sh
+++ b/scripts/Software/common-apt/install.sh
@@ -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