Skip to content

Commit 5c9b28a

Browse files
committed
Fix the "Start" script
1 parent ee88b0d commit 5c9b28a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Start.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ $release = [Release]::Find($Env:SETUP_ANT_VERSION)
1212
if (-not $release) { throw "No release matches the specified version constraint." }
1313

1414
$optionalTasks = $Env:SETUP_ANT_OPTIONAL_TASKS -eq "true"
15-
$path = [Setup]::new($release).Install($optionalTasks).GetAwaiter().GetResult()
15+
$path = [Setup]::new($release).Install($optionalTasks)
1616

1717
$installed = $optionalTasks ? "installed with optional tasks" : "installed"
1818
"Apache Ant $($release.Version) successfully $installed in ""$path""."

0 commit comments

Comments
 (0)