We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e1191e commit 32f85f3Copy full SHA for 32f85f3
scripts/clear-appveyor-cache.ps1
@@ -28,4 +28,7 @@ if ($confirmation -ne 'y') {
28
$headers = @{}
29
$headers['Authorization'] = "Bearer $appveyor_token"
30
$headers["Content-type"] = "application/json"
31
-Invoke-RestMethod -Uri 'https://ci.appveyor.com/api/projects/oldratlee/java-dns-cache-manipulator/buildcache' -Headers $headers -Method Delete
+
32
+$uri = 'https://ci.appveyor.com/api/projects/oldratlee/java-dns-cache-manipulator/buildcache'
33
34
+Invoke-RestMethod -Uri $uri -Headers $headers -Method Delete
0 commit comments