~ubuntu-branches/ubuntu/saucy/charm-tools/saucy

« back to all changes in this revision

Viewing changes to scripts/get

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2012-07-23 13:52:08 UTC
  • mfrom: (1.1.8)
  • Revision ID: package-import@ubuntu.com-20120723135208-55bdkt9jj6kthm47
Tags: 0.3+151-0ubuntu1
* New upstream release.
* build-dep on python-yaml so charm proof tests can be run.
* buid-dep on python-apt and python-cheetah to enable new upstream
  tests.
* d/charm-tools.install: Install etc/* to pick up bash completion.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/bin/bash
2
2
 
3
 
if [ -z "$1" ] ; then
 
3
if [ -z "$1" -o "$1" = "--help" ] ; then
4
4
    echo "Retrieves official charm branches from https://launchpad.net/charm" >&2
5
 
    echo "usage: charm get name_of_charm [ local_charm_repo ]" >&2
 
5
    echo "usage: charm get [ --help ] name_of_charm [ local_charm_repo ]" >&2
6
6
    exit 1
7
7
fi
8
8