diff options
author | Norbert Preining <preining@logic.at> | 2008-01-18 07:49:52 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-01-18 07:49:52 +0000 |
commit | 6af674e7888c725a1d9991ae3cdab32e5d50a84a (patch) | |
tree | 0bb79e0c0ad968f2c27dca8eb6a6e9a18f73d138 /Master/bin/win32 | |
parent | 57a03e95e90053ef4495e528abb0f8aae5a9862d (diff) |
use os.execute instead of os.exec, thanks Taco.
git-svn-id: svn://tug.org/texlive/trunk@6296 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/bin/win32')
-rwxr-xr-x | Master/bin/win32/updmap-sys.texlua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/bin/win32/updmap-sys.texlua b/Master/bin/win32/updmap-sys.texlua index eb979122009..b66ea0c61f6 100755 --- a/Master/bin/win32/updmap-sys.texlua +++ b/Master/bin/win32/updmap-sys.texlua @@ -29,5 +29,5 @@ for i=1, #arg do updmap=updmap .. ' ' .. arg[i] end -os.exec(updmap); +os.execute(updmap); |