summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Master/tlpkg/TeXLive/TLUtils.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/tlpkg/TeXLive/TLUtils.pm b/Master/tlpkg/TeXLive/TLUtils.pm
index 7a2f094957c..48516389cba 100644
--- a/Master/tlpkg/TeXLive/TLUtils.pm
+++ b/Master/tlpkg/TeXLive/TLUtils.pm
@@ -450,7 +450,7 @@ output as first element and the return value (exit code) as second.
sub run_cmd {
my $cmd = shift;
my $output = `$cmd`;
- $retval = $?;
+ my $retval = $?;
if ($retval != 0) {
$retval /= 256 if $retval > 0;
}