1
0
mirror of https://github.com/mpv-player/mpv synced 2025-01-02 21:12:23 +00:00

Days should be two digits.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15644 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2005-06-05 14:17:34 +00:00
parent 31dcc9c07e
commit bd5b237ceb

View File

@ -22,7 +22,7 @@ case "$OS" in
year=`echo $LS | cut -d' ' -f9 | cut -c 3-4`
month=`echo $LS | awk -F" " '{printf "%.2d", \
(index("JanFebMarAprMayJunJulAugSepOctNovDec",$6)+2)/3}'`
day=`echo $LS | cut -d' ' -f7`
day=`printf %.2d \` echo $LS | cut -d' ' -f7 \` `
hour=`echo $LS | cut -d' ' -f8 | cut -d: -f1`
minute=`echo $LS | cut -d' ' -f8 | cut -d: -f2`
last_cvs_update="${year}${month}${day}-${hour}:${minute}"