Bugfix: forgot to pad %day% with a '0' when < 10 for nightly backups
This commit is contained in:
Alan Mason 2013-05-04 23:19:23 -06:00
parent b59a339c0c
commit ff4b3ff679

View file

@ -175,6 +175,10 @@ if %day% equ 0 (
)
)
if %day% lss 10 (
set day=0%day%
)
if not exist "%src%\%year%%month%%day%\*.*" goto DayNotFound
:NightlyFilter