Make setup script functions synchronous

This commit is contained in:
Nikolai Laevskii
2023-05-30 13:19:37 +02:00
parent 820f30d332
commit addb470701
2 changed files with 20 additions and 24 deletions

View File

@ -143,7 +143,7 @@ export class DotnetInstallScript {
this.setupScriptBash();
}
private async setupScriptPowershell() {
private setupScriptPowershell() {
this.scriptArguments = [
'-NoLogo',
'-Sta',
@ -165,7 +165,7 @@ export class DotnetInstallScript {
}
}
private async setupScriptBash() {
private setupScriptBash() {
chmodSync(this.escapedScript, '777');
}