#!/bin/sh Convdir=$1 Prescan=$2 if [ "$Prescan" != "" ] then List="genmetadata"; Opt="-prescan"; else List="genmetadata genchanges dochanges dolabels"; Opt=""; fi for cmd in $List do echo "========== $cmd $Opt" date if ! bin/$cmd $Opt $Convdir then echo "*** $cmd $Opt FAILED"; exit 1; fi sleep 2 done date
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 5735 | Daniel Sherwood | Branch for Sepura import | ||
//guest/perforce_software/utils/cvs2p4/bin/cvs2p4 | |||||
#1 | 5601 | Richard Geiger | Integrate 3.0 changes, preparing to publish. | ||
//guest/richard_geiger/utils/cvs2p4/bin/cvs2p4 | |||||
#4 | 5481 | Richard Geiger |
bin/cvs2p4 creeping featurism, so it can run "bin/cvs2p4 <module> -prescan" and it will only do the prescan phase. (genmetadata -prescan) |
||
#3 | 5442 | Richard Geiger |
A checkpoint commit on the way to a 2.6.0 release with the new IronPort inspired improvements. |
||
#2 | 5430 | Richard Geiger |
This is another "checkpoint" commit. It significantly rearranges how labels are done, so as to use a hueristic to divine label<->branch identifications. Not intended for release without further testing and tweakage! |
||
#1 | 5429 | Richard Geiger |
A very crude "do all the steps" script. Not ready for release yet. |