~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to utilities/rocketfuel-status

  • Committer: Mark Shuttleworth
  • Date: 2007-06-10 16:31:37 UTC
  • mto: This revision was merged to the branch mainline in revision 4345.
  • Revision ID: mark@canonical.com-20070610163137-yjxm6mkzm5rgzo52
Add tool to find revisions not yet in trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/bash
 
2
 
 
3
# This script checks each of your branches in ~/canonical/lp-branches/ to
 
4
# see which ones have revisions that have not yet landed in trunk.
 
5
 
 
6
cd ~/canonical/lp-branches/trunk
 
7
for branch in ../*; do
 
8
  if [ ${branch} != "../trunk" ]; then
 
9
    echo "Examining ${branch} for revisions not yet in trunk"
 
10
    bzr missing --theirs-only --line ${branch}
 
11
  fi;
 
12
done;
 
13