From 6a227682ef2b47410cf10423bc619648020b8259 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ram=C3=B3n=20Jim=C3=A9nez?= Date: Fri, 16 Aug 2019 03:16:52 +0200 Subject: [PATCH] Fix incomplete comment --- src/rustup.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rustup.ts b/src/rustup.ts index 125a10f..226e33f 100644 --- a/src/rustup.ts +++ b/src/rustup.ts @@ -9,7 +9,7 @@ import {chmodSync} from 'fs'; let tempDirectory = process.env['RUNNER_TEMPDIRECTORY'] || ''; export async function install() { - // `rustup` is already installed in + // `rustup` is already installed on Linux and Windows platforms if (os.platform() == 'darwin') { let toolPath = await installOnUnix();