diff options
author | Norbert Preining <preining@logic.at> | 2008-09-28 09:03:09 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-09-28 09:03:09 +0000 |
commit | 2efd3250151021ea59a1386e3089e148f0ba308b (patch) | |
tree | 0f1a99718d4b041e58f70595fdf3b87af8979bca | |
parent | 3fb7f4af6f70321f40a0647129638aeefc03c85f (diff) |
fix TLMedia: add missing return when installing direct from Master
git-svn-id: svn://tug.org/texlive/trunk@10769 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Master/tlpkg/TeXLive/TLMedia.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Master/tlpkg/TeXLive/TLMedia.pm b/Master/tlpkg/TeXLive/TLMedia.pm index 49b21011a0a..3d172abfd7b 100644 --- a/Master/tlpkg/TeXLive/TLMedia.pm +++ b/Master/tlpkg/TeXLive/TLMedia.pm @@ -278,6 +278,8 @@ sub _install_package { mkdirhier("$target/$dn"); copy "$location/$file", "$target/$dn"; } + # we always assume that copy will work + return(1); } elsif ($what =~ m,\.tar(\.lzma)?$,) { my $type = defined($1) ? "lzma" : "tar"; |