texlive[56562] Master/texmf-dist/scripts/texlive/tlmgr.pl: ignore

commits+preining at tug.org commits+preining at tug.org
Tue Oct 6 01:03:26 CEST 2020


Revision: 56562
          http://tug.org/svn/texlive?view=revision&revision=56562
Author:   preining
Date:     2020-10-06 01:03:26 +0200 (Tue, 06 Oct 2020)
Log Message:
-----------
ignore return value from broadcast_env in tlgmr

Modified Paths:
--------------
    trunk/Master/texmf-dist/scripts/texlive/tlmgr.pl

Modified: trunk/Master/texmf-dist/scripts/texlive/tlmgr.pl
===================================================================
--- trunk/Master/texmf-dist/scripts/texlive/tlmgr.pl	2020-10-05 22:32:32 UTC (rev 56561)
+++ trunk/Master/texmf-dist/scripts/texlive/tlmgr.pl	2020-10-05 23:03:26 UTC (rev 56562)
@@ -1507,7 +1507,9 @@
       $ret |= TeXLive::TLUtils::w32_add_to_path(
         $localtlpdb->root . "/bin/win32",
         $winadminmode);
-      $ret |= TeXLive::TLWinGoo::broadcast_env();
+      # ignore this return value, since broadcase_env might return
+      # nothing in case of errors, and there is no way around it.
+      # $ret |= TeXLive::TLWinGoo::broadcast_env();
     } else {
       $ret |= TeXLive::TLUtils::add_symlinks($localtlpdb->root,
         $localtlpdb->platform(),
@@ -1520,7 +1522,9 @@
       $ret |= TeXLive::TLUtils::w32_remove_from_path(
         $localtlpdb->root . "/bin/win32",
         $winadminmode);
-      $ret |= TeXLive::TLWinGoo::broadcast_env();
+      # ignore this return value, since broadcase_env might return
+      # nothing in case of errors, and there is no way around it.
+      # $ret |= TeXLive::TLWinGoo::broadcast_env();
     } else {
       # remove symlinks
       $ret |= TeXLive::TLUtils::remove_symlinks($localtlpdb->root,



More information about the tex-live-commits mailing list.