diff options
| author | Al <26797547+Al12rs@users.noreply.github.com> | 2020-03-01 13:53:53 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-01 13:53:53 +0100 |
| commit | 7683dc205d62ad55fb1044c3f25a40cbedff8b5a (patch) | |
| tree | f815b48d182249bded9d9f193ddc08f79babdfdd | |
| parent | 979889edfe61cd12de3764cd31868cef748b52c4 (diff) | |
Fix timestamp formatting for appveyor
| -rw-r--r-- | appveyor.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml index 318f3413..ce4cb845 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -6,7 +6,7 @@ init: # define build version depending on nightly or normal build if($env:APPVEYOR_SCHEDULED_BUILD -eq 'True'){ - $timestamp= Get-Date -Format "ddmmyyyy-HHmm" + $timestamp= Get-Date -Format "ddMMyyyy-HHmm" Update-AppveyorBuild -Version "$($env:MO_VERSION)$($env:VER_STUB_NIGHTLY)$timestamp" } else { Update-AppveyorBuild -Version "$($env:MO_VERSION)$($env:VER_STUB_NORMAL)$($env:APPVEYOR_BUILD_NUMBER)" @@ -66,4 +66,4 @@ on_failure: Invoke-RestMethod https://raw.githubusercontent.com/DiscordHooks/appveyor-discord-webhook/master/send.ps1 -o send.ps1 - ./send.ps1 failure $env:WEBHOOK_URL
\ No newline at end of file + ./send.ps1 failure $env:WEBHOOK_URL |
