tuned whitespace;
authorwenzelm
Sat, 26 Feb 2022 21:48:25 +0100
changeset 75156 09da7b15162b
parent 75155 0b6c43a87fa6
child 75157 d67ec542b5b5
tuned whitespace;
src/Tools/VSCode/src/vscode_setup.scala
--- a/src/Tools/VSCode/src/vscode_setup.scala	Sat Feb 26 21:40:53 2022 +0100
+++ b/src/Tools/VSCode/src/vscode_setup.scala	Sat Feb 26 21:48:25 2022 +0100
@@ -24,16 +24,16 @@
   def exe_path(dir: Path): Path = dir + Path.explode("bin/codium")
 
   def vscode_installation(version: String, platform: Platform.Family.Value): (Boolean, Path) =
-    {
-      val platform_name =
-        if (platform == Platform.Family.windows) Platform.Family.native(platform)
-        else Platform.Family.standard(platform)
-      val install_dir =
-        vscode_settings + Path.basic("installation") +
-          Path.basic(version) + Path.basic(platform_name)
-      val install_ok = exe_path(install_dir).is_file
-      (install_ok, install_dir)
-    }
+  {
+    val platform_name =
+      if (platform == Platform.Family.windows) Platform.Family.native(platform)
+      else Platform.Family.standard(platform)
+    val install_dir =
+      vscode_settings + Path.basic("installation") +
+        Path.basic(version) + Path.basic(platform_name)
+    val install_ok = exe_path(install_dir).is_file
+    (install_ok, install_dir)
+  }
 
 
   /* patch resources */