Use a specific version of Gliden64 (1d90610782)

This commit is contained in:
zilmar 2021-06-13 13:15:12 +09:30
parent a1ab96fec4
commit 699d4bb301
1 changed files with 2 additions and 2 deletions

View File

@ -41,10 +41,10 @@ sub CopyArtificat()
Dim objHTTP
Set objHTTP = CreateObject("MSXML2.XMLHTTP")
objHTTP.open "GET", BuildUrl & "/lastSuccessfulBuild/api/xml", False
objHTTP.open "GET", BuildUrl & "/181/api/xml", False
objHTTP.send
if (objHTTP.status <> 200) then
WScript.StdOut.WriteLine "failed to get job api (" & BuildUrl & "/lastSuccessfulBuild/api/xml)"
WScript.StdOut.WriteLine "failed to get job api (" & BuildUrl & "/181/api/xml)"
WScript.Quit 1
end if