1.1
Bugfix: forgot to pad %day% with a '0' when < 10 for nightly backups
This commit is contained in:
parent
b59a339c0c
commit
ff4b3ff679
1 changed files with 4 additions and 0 deletions
|
|
@ -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
|
if not exist "%src%\%year%%month%%day%\*.*" goto DayNotFound
|
||||||
|
|
||||||
:NightlyFilter
|
:NightlyFilter
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue