From d23e37b9055165d82d87211d2030f17923ed3bc1 Mon Sep 17 00:00:00 2001 From: AndrewKahr <22359829+AndrewKahr@users.noreply.github.com> Date: Tue, 1 Feb 2022 15:42:15 -0800 Subject: [PATCH] Update src/model/platform-setup/setup-mac.ts Co-authored-by: Webber Takken --- src/model/platform-setup/setup-mac.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/model/platform-setup/setup-mac.ts b/src/model/platform-setup/setup-mac.ts index f1a2d204..087b3759 100644 --- a/src/model/platform-setup/setup-mac.ts +++ b/src/model/platform-setup/setup-mac.ts @@ -21,8 +21,8 @@ class SetupMac { private static async installUnityHub(silent = false) { const command = 'brew install unity-hub'; if (!fs.existsSync(this.unityHubPath)) { - //Ignoring return code because the log seems to overflow the internal buffer which triggers - //a false error + // Ignoring return code because the log seems to overflow the internal buffer which triggers + // a false error const errorCode = await exec(command, undefined, { silent, ignoreReturnCode: true }); if (errorCode) { throw new Error(`There was an error installing the Unity Editor. See logs above for details.`);