Fix build. (#7)

* Fix.

* Husky commit correct node modules
This commit is contained in:
Stephen Franceschelli
2019-07-30 13:37:35 -04:00
committed by Danny McCormick
parent ffce9ce43f
commit 136ed85710
19 changed files with 453 additions and 462 deletions

View File

@ -6,8 +6,8 @@ import path = require('path');
const toolDir = path.join(__dirname, 'runner', 'tools');
const tempDir = path.join(__dirname, 'runner', 'temp');
process.env['RUNNER_TOOLSDIRECTORY'] = toolDir;
process.env['RUNNER_TEMPDIRECTORY'] = tempDir;
process.env['RUNNER_TOOL_CACHE'] = toolDir;
process.env['RUNNER_TEMP'] = tempDir;
import * as installer from '../src/installer';
const IS_WINDOWS = process.platform === 'win32';