Add 8.0 support on windows

This commit is contained in:
Shivam Mathur
2019-12-18 21:44:02 +05:30
parent 922f1e27b8
commit c6ad3d1a70
6 changed files with 56 additions and 20 deletions

View File

@@ -63,7 +63,9 @@ export async function run(): Promise<void> {
}
case 'win32':
script_path = await build('win32.ps1', version, os_version);
await exec('pwsh ' + script_path + ' -version ' + version);
await exec(
'pwsh ' + script_path + ' -version ' + version + ' -dir ' + __dirname
);
break;
}
} catch (error) {