Fix formatting

This commit is contained in:
Kevin Gosse 2022-06-22 15:44:23 +02:00
parent 90312b694f
commit 1a3761f9e7
2 changed files with 2 additions and 2 deletions

View File

@ -116,7 +116,7 @@ export class DotnetCoreInstaller {
command += ` -ProxyBypassList ${process.env['no_proxy']}`;
}
if (this.architecture != ''){
if (this.architecture != '') {
command += ` -Architecture ${this.architecture}`;
}

View File

@ -18,7 +18,7 @@ export async function run() {
let versions = core.getMultilineInput('dotnet-version');
let architecture = core.getInput('architecture');
if (!architecture){
if (!architecture) {
architecture = '';
}