Ignore:
Timestamp:
2016-03-15T17:08:26+13:00 (8 years ago)
Author:
ak19
Message:

Swap month and day in date string for generated nightly binary, to get YYYY-MM-DD so it can match what's generated with linux and mac.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • other-projects/expeditee-release-kits/create-expeditee.bat

    r30399 r30405  
    33
    44:: http://stackoverflow.com/questions/203090/how-to-get-current-datetime-on-windows-command-line-in-a-suitable-format-for-us
    5 for /f "tokens=2-4 delims=/ " %%a in ('date /t') do (set mydate=%%c-%%a-%%b)
     5for /f "tokens=2-4 delims=/ " %%a in ('date /t') do (set mydate=%%c-%%b-%%a)
    66echo The current date is %mydate%
    77
Note: See TracChangeset for help on using the changeset viewer.