Mercurial > hg > octave-lyh
diff scripts/pkg/pkg.m @ 11589:b0084095098e
missing semicolons in script files
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 20 Jan 2011 18:26:09 -0500 |
parents | d5bd2766c640 |
children | ad636c1f353b |
line wrap: on
line diff
--- a/scripts/pkg/pkg.m +++ b/scripts/pkg/pkg.m @@ -669,7 +669,7 @@ endif if (length (dirlist) > 3) - error ("bundles of packages are not allowed") + error ("bundles of packages are not allowed"); endif endif @@ -2243,7 +2243,7 @@ if (have_sh) [status, output] = system (cstrcat ("sh.exe -c \"", cmd, "\"")); else - error ("Can not find the command shell") + error ("Can not find the command shell"); endif else [status, output] = system (cmd);