Changeset 1292


Ignore:
Timestamp:
Nov 22, 2008, 2:50:40 AM (17 years ago)
Author:
John Small
Message:

ReleaseTool now uses a "pager" on the WARNALL build. It uses "less"
(if found on the PATH) or "more"

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ReleaseTool.cmd

    r1289 r1292  
    5050
    5151
    52 globals = 'cmd prompt editor editorcmds killpid tester killtarget version_filelist'
     52globals = 'cmd prompt editor editorcmds killpid tester killtarget version_filelist pager'
    5353
    5454parse arg ver next_ver
     
    147147         do /* Ensure the edits build */
    148148            'set WARNALL=1'
    149             'wmake -a all'
     149            'wmake -a all |' pager
    150150         end
    151151      when action = 7 then
     
    353353   version_filelist = version_filelist 'warpin\makefile dll\internal\makefile'
    354354   version_filelist = version_filelist 'dll\copyright.h'
     355
     356   if SysSearchPath( 'PATH', 'less.exe') \= '' then
     357      pager = 'less'
     358   else
     359      pager = 'more'
    355360return
    356361
     
    366371      say '4.  Check (svn) status of local files.'
    367372      say '5.  Edit various files with version #''s and date''s.'
    368       say '6.  Ensure the edits build.'
     373      say '6.  Ensure the edits build. (WARNALL build)'
    369374      say '7.  Test built code.'
    370375      say '8.  Commit code.'
Note: See TracChangeset for help on using the changeset viewer.