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 cd5fc335235..49eda5b0510 100644
--- a/Master/tlpkg/TeXLive/TLUtils.pm
+++ b/Master/tlpkg/TeXLive/TLUtils.pm
@@ -411,7 +411,7 @@ output as first element and the return value (exit code) as second.
sub run_cmd {
my $cmd = shift;
my $output = `$cmd`;
- $retval = $?
+ $retval = $?;
if ($retval != 0) {
$retval /= 256 if $retval > 0;
}