From 27f88822edc6144222096d3f4de72a66a2cc3428 Mon Sep 17 00:00:00 2001 From: Max Romanyuta Date: Thu, 3 Dec 2020 16:26:48 +0200 Subject: [PATCH] Fix lint problems --- src/main.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index c7caa3d..c231f7d 100644 --- a/src/main.ts +++ b/src/main.ts @@ -45,7 +45,12 @@ async function install(): Promise { } else if (process.platform === 'win32') { const cmdlineToolsZip = await tc.downloadTool(COMMANDLINE_TOOLS_WIN_URL) const cmdlineTools = await tc.extractZip(cmdlineToolsZip) - sdkManager = path.join(cmdlineTools, 'cmdline-tools', 'bin', 'sdkmanager.bat') + sdkManager = path.join( + cmdlineTools, + 'cmdline-tools', + 'bin', + 'sdkmanager.bat' + ) } else { core.error(`Unsupported platform: ${process.platform}`) }