~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to tools/packaging/build-packages.sh

  • Committer: Aaron Bentley
  • Date: 2009-06-19 21:16:31 UTC
  • mto: This revision was merged to the branch mainline in revision 4481.
  • Revision ID: aaron@aaronbentley.com-20090619211631-4fnkv2uui98xj7ux
Provide control over switch and shelver messaging.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/bin/bash
2
 
# Helper to build packages for the various distributions
 
2
# A helper script to build packages for the various distributions
3
3
 
4
4
if [ -z "$UBUNTU_RELEASES" ]; then
5
5
    echo "Configure the distro platforms that you want to"
9
9
fi
10
10
 
11
11
for DISTRO in $UBUNTU_RELEASES; do
12
 
    (cd "$PACKAGE-$DISTRO" && bzr builddeb -S)
 
12
    (cd "packaging-$DISTRO" && bzr builddeb -S)
13
13
done