From b27e423a65fdd3d89f2cdca1836073690debf4dc Mon Sep 17 00:00:00 2001 From: Timothy Clem Date: Mon, 30 Sep 2019 10:40:10 -0700 Subject: [PATCH] Format --- src/installer.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/installer.ts b/src/installer.ts index ecc301f..1639fc2 100644 --- a/src/installer.ts +++ b/src/installer.ts @@ -31,12 +31,7 @@ export async function _findHaskellToolVersion( throw new Error('versionSpec parameter is required'); } - const toolPath: string = path.join( - baseInstallDir, - tool, - version, - 'bin' - ); + const toolPath: string = path.join(baseInstallDir, tool, version, 'bin'); if (fs.existsSync(toolPath)) { core.debug(`Found tool in cache ${tool} ${version}`); core.addPath(toolPath);