We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee88b0d commit 5c9b28aCopy full SHA for 5c9b28a
Start.ps1
@@ -12,7 +12,7 @@ $release = [Release]::Find($Env:SETUP_ANT_VERSION)
12
if (-not $release) { throw "No release matches the specified version constraint." }
13
14
$optionalTasks = $Env:SETUP_ANT_OPTIONAL_TASKS -eq "true"
15
-$path = [Setup]::new($release).Install($optionalTasks).GetAwaiter().GetResult()
+$path = [Setup]::new($release).Install($optionalTasks)
16
17
$installed = $optionalTasks ? "installed with optional tasks" : "installed"
18
"Apache Ant $($release.Version) successfully $installed in ""$path""."
0 commit comments