We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 539c28f commit 4c0be2bCopy full SHA for 4c0be2b
1 file changed
build.ps1
@@ -223,15 +223,20 @@ foreach ($buildTime in $buildTimes) {
223
Add-Member NoteProperty -InputObject $buildTime -Name Time "$($buildTime.Time)" -Force
224
}
225
226
+<#
227
$history = @(try {
228
Invoke-RestMethod -Uri $BuildTimeHistoryUrl -ErrorAction Ignore
229
} catch {}) -ne $null
230
231
$history += $buildTimes |
232
Select-Object Technique, Time, RelativeSpeed, DateTime
233
-ConvertTo-Json -InputObject $history > ./history.json -Depth 2
234
+ConvertTo-Json -InputObject $history > ./history.json -Depth 4
235
+#>
236
237
Remove-Item -Recurse -Force ./astrodev
238
-Pop-Location
239
+Pop-Location
240
+
241
+$LASTEXITCODE = 0
242
0 commit comments