Call addToPath method on DotnetInstallDir directly

This commit is contained in:
Nikolai Laevskii
2023-05-30 12:19:28 +02:00
parent defac2491f
commit 89b480a0df
3 changed files with 3 additions and 6 deletions

View File

@ -246,8 +246,6 @@ export abstract class DotnetInstallDir {
}
export class DotnetCoreInstaller {
static addToPath = DotnetInstallDir.addToPath;
static {
DotnetInstallDir.setEnvironmentVariable();
}

View File

@ -1,5 +1,5 @@
import * as core from '@actions/core';
import {DotnetCoreInstaller} from './installer';
import {DotnetCoreInstaller, DotnetInstallDir} from './installer';
import * as fs from 'fs';
import path from 'path';
import semver from 'semver';
@ -69,7 +69,7 @@ export async function run() {
const installedVersion = await dotnetInstaller.installDotnet();
installedDotnetVersions.push(installedVersion);
}
DotnetCoreInstaller.addToPath();
DotnetInstallDir.addToPath();
}
const sourceUrl: string = core.getInput('source-url');