Run Prettier

This commit is contained in:
Reegeek 2020-12-02 11:15:28 +01:00
parent defd795883
commit b57469b036
2 changed files with 5 additions and 2 deletions

View File

@ -76,7 +76,7 @@ export class DotNetVersionInfo {
} }
export class DotnetCoreInstaller { export class DotnetCoreInstaller {
constructor(version: string, architecture:string) { constructor(version: string, architecture: string) {
this.version = version; this.version = version;
this.architecture = architecture; this.architecture = architecture;
} }

View File

@ -30,7 +30,10 @@ export async function run() {
} }
if (version) { if (version) {
const dotnetInstaller = new installer.DotnetCoreInstaller(version, architecture); const dotnetInstaller = new installer.DotnetCoreInstaller(
version,
architecture
);
await dotnetInstaller.installDotnet(); await dotnetInstaller.installDotnet();
} }