[Script] Fix date time in upload_beta.vbs

This commit is contained in:
zilmar 2018-03-27 17:57:29 +11:00
parent 4967242a11
commit 6fe37a2c0e
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ sub CreateUploadTarget()
data = data & "&password="&WScript.Arguments(1)
data = data & "&jform[product_name]="&WScript.Arguments(3)
data = data & "&jform[product_desc]="&ProductDescription
data = data & "&jform[product_date]="&Year(build_date) & "-" & Month(build_date) & "-" & Day(build_date) & Hour(build_date) & ":" & Minute(build_date) & ":" & Second(build_date)
data = data & "&jform[product_date]="&Year(build_date) & "-" & Month(build_date) & "-" & Day(build_date) & " " & Hour(build_date) & ":" & Minute(build_date) & ":" & Second(build_date)
Set objHTTP = CreateObject("Microsoft.XMLHTTP")
objHTTP.open "POST", url, False