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	Thu Jan 20 17:51:13 2011 -0500
+++ b/scripts/pkg/pkg.m	Thu Jan 20 18:26:09 2011 -0500
@@ -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);