~ubuntubudgie-dev/tasksel/ubuntu-budgie-tasksel-proposal.zesty

« back to all changes in this revision

Viewing changes to ubuntu-seeds.pl

  • Committer: Colin Watson
  • Date: 2014-04-04 10:38:26 UTC
  • mfrom: (1489.1.3 ubuntu-gnome)
  • Revision ID: cjwatson@canonical.com-20140404103826-a9m6j9qpnex8ai8s
mergeĀ lp:~noskcaj/tasksel/ubuntu-gnome

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
my $mythbuntu_seed_base='bzr+ssh://bazaar.launchpad.net/~mythbuntu-dev/ubuntu-seeds';
33
33
my $ubuntustudio_seed_base='bzr+ssh://bazaar.launchpad.net/~ubuntustudio-dev/ubuntu-seeds';
34
34
my $lubuntu_seed_base='bzr+ssh://bazaar.launchpad.net/~lubuntu-dev/ubuntu-seeds';
 
35
my $ubuntu_gnome_seed_base='bzr+ssh://bazaar.launchpad.net/~ubuntu-gnome-dev/ubuntu-seeds';
35
36
my $outdir=shift or die "no output directory specified\n";
36
37
my $suite=shift or die "no suite specified\n";
37
38
my @flavours=@ARGV;
83
84
                push @command, "$ubuntustudio_seed_base/$flavour.$suite";
84
85
        } elsif ($flavour eq 'lubuntu') {
85
86
                push @command, "$lubuntu_seed_base/$flavour.$suite";
 
87
        } elsif ($flavour eq 'ubuntu-gnome') {
 
88
                push @command, "$ubuntu_gnome_seed_base/$flavour.$suite";
86
89
        } else {
87
90
                push @command, "$seed_base/$flavour.$suite";
88
91
        }