Commit 8ab3553b authored by unknown's avatar unknown

- Output redirection does not work with run_command(), use system()

   instead.

parent 2aabd584
......@@ -278,9 +278,8 @@ unless ($opt_skip_manual)
&logger($msg);
foreach $file qw/internals manual reservedwords/
{
$command= "bk cat $opt_docdir/Docs/$file.texi";
$command.= " > $target_dir/Docs/$file.texi";
&run_command($command, "Could not updated $file.texi in $target_dir/Docs/!");
system ("bk cat $opt_docdir/Docs/$file.texi > $target_dir/Docs/$file.texi") == 0
or &abort("Could not update $file.texi in $target_dir/Docs/!");
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment