You've already forked setup-dotnet
mirror of
https://github.com/actions/setup-dotnet.git
synced 2025-08-17 02:54:40 +07:00
Make setup script functions synchronous
This commit is contained in:
@ -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');
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user