home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 29 Fixes_o / 29-Fixes_o.zip / pn71501.zip / INSTALL.CMD next >
OS/2 REXX Batch file  |  1995-06-26  |  449b  |  15 lines

  1. /* REXX - Install stack updates */
  2. '@echo off'
  3. say'Installing fix for APAR PN71501.'
  4. say'...'
  5. 'UPDINST'
  6. if (rc <> 0) then do
  7.   say'An error has occurred while installing this package'
  8.   say'The return code reported is: '||rc
  9.   say'Check for any special instructions in the readme.bas file and retry install.'
  10. end
  11. else do
  12.   say'The package has installed sucessfully.'
  13.   say'You must reboot for the new stack fixes to take effect.'
  14. end
  15.