joulev
Today I tried to update my TeX Live distribution with `tlmgr update --all` (with admin right of course). During the run, I see the following lines:
```none
running mktexlsr ...
done running mktexlsr.
running mtxrun --generate ...
done running mtxrun --generate.
running updmap-sys ...
tlmgr.pl: updmap-sys failed (status 1), output:
updmap will read the following updmap.cfg files (in precedence order):
c:/texlive/2019/texmf-config/web2c/updmap.cfg
c:/texlive/2019/texmf-dist/web2c/updmap.cfg
updmap may write changes to the following updmap.cfg file:
c:/texlive/2019/texmf-config/web2c/updmap.cfg
dvips output dir: "c:/texlive/2019/texmf-var/fonts/map/dvips/updmap"
pdftex output dir: "c:/texlive/2019/texmf-var/fonts/map/pdftex/updmap"
dvipdfmx output dir: "c:/texlive/2019/texmf-var/fonts/map/dvipdfmx/updmap"
updmap [ERROR]: The following map file(s) couldn't be found:
updmap [ERROR]: classico.map (in c:/texlive/2019/texmf-config/web2c/updmap.cfg)
updmap [ERROR]: classicovn.map (in c:/texlive/2019/texmf-config/web2c/updmap.cfg)
updmap [ERROR]: dayroman.map (in c:/texlive/2019/texmf-config/web2c/updmap.cfg)
updmap [ERROR]: gandhi.map (in c:/texlive/2019/texmf-config/web2c/updmap.cfg)
updmap [ERROR]: garamondvn.map (in c:/texlive/2019/texmf-config/web2c/updmap.cfg)
updmap [ERROR]: tli.map (in c:/texlive/2019/texmf-config/web2c/updmap.cfg)
updmap [ERROR]: ua1.map (in c:/texlive/2019/texmf-config/web2c/updmap.cfg)
updmap [ERROR]: ugm.map (in c:/texlive/2019/texmf-config/web2c/updmap.cfg)
updmap [ERROR]: ul9.map (in c:/texlive/2019/texmf-config/web2c/updmap.cfg)
updmap [ERROR]: ulg.map (in c:/texlive/2019/texmf-config/web2c/updmap.cfg)
updmap [ERROR]: webo.map (in c:/texlive/2019/texmf-config/web2c/updmap.cfg)
updmap [ERROR]: zgm.map (in c:/texlive/2019/texmf-config/web2c/updmap.cfg)
updmap [ERROR]: Did you run mktexlsr?
You can disable non-existent map entries using the option
--syncwithtrees.
C:\texlive\2019\bin\win32\runscript.tlu:911: command failed with exit code 1:
perl.exe c:\texlive\2019\texmf-dist\scripts\texlive\updmap.pl --sys
```
In the first lines, it told me that `mktexlsr` was already run. However, later when `updmap`, it ended with exit code `1` and a message saying "*Did you run mktexlsr?*"
Expectedly, the last line is
```none
tlmgr.pl: An error has occurred. See above messages. Exiting.
```
Everything else goes as normal.
What could have gone wrong and what can I do about it?