~bac/charms/precise/juju-gui/bug-1088618-serve-releases

« back to all changes in this revision

Viewing changes to hooks/install

  • Committer: Francesco Banconi
  • Date: 2012-12-18 16:19:21 UTC
  • Revision ID: francesco.banconi@canonical.com-20121218161921-93jwxdrgceon0m2p
Updated install hook.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
 
33
33
 
34
34
DEB_DEPENDENCIES = (
35
 
    'bzr', 'imagemagick', 'make', 'nginx', 'nodejs', 'npm', 'zookeeper')
 
35
    'bzr', 'imagemagick', 'make', 'nginx', 'nodejs', 'npm',
 
36
    'python-launchpadlib', 'zookeeper',
 
37
)
36
38
 
37
39
 
38
40
def get_dependencies():
44
46
def main():
45
47
    config = get_config()
46
48
    get_dependencies()
47
 
    fetch(config['juju-gui-branch'], config['juju-api-branch'])
 
49
    fetch(config['juju-gui-source'], config['juju-api-branch'])
48
50
    build(config['command-log-file'])
49
51
    config_json.set(config)
50
52