~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Patch Queue Manager
  • Date: 2011-10-14 16:54:26 UTC
  • mfrom: (6216.1.1 remove-this-file)
  • Revision ID: pqm@pqm.ubuntu.com-20111014165426-tjix4e6idryf1r2z
(jelmer) Remove an accidentally committed .THIS file. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/bin/bash
2
 
# A helper script to build packages for the various distributions
 
2
# Helper 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 "packaging-$DISTRO" && bzr builddeb -S)
 
12
    (cd "$PACKAGE-$DISTRO" && bzr builddeb -S)
13
13
done