Skip to content

Commit

Permalink
Fix Get-Date
Browse files Browse the repository at this point in the history
  • Loading branch information
dicolanl committed Jul 1, 2021
1 parent e94247e commit 34988fc
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ $requestHeaders = @{
"Authorization" = "Bearer $accessToken"
"Content-Type" = "application/json"
}
$Date = (Get-Date).AddDays(7) | Get-Date -Format yyyy-MM-ddTHH:mm:ssZ -asUTC
$Date = (Get-Date -AsUTC).AddDays(7) | Get-Date -Format yyyy-MM-ddTHH:mm:ssZ

# Main
if ($env:AWS -eq "Yes") {
Expand Down

0 comments on commit 34988fc

Please sign in to comment.