mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 00:55:37 +00:00
24 lines
564 B
Perl
24 lines
564 B
Perl
# Example configuration file for Bonsai
|
|
|
|
# The Bonsai modules and their relation to cvs
|
|
|
|
# @::TreeList is a list of all configured Bonsai modules
|
|
# to add a module, add its name to @::TreeList
|
|
# then duplicate the "default" entry in @::TreeInfo and
|
|
# change the values appropriately
|
|
|
|
@::TreeList = ('default');
|
|
|
|
%::TreeInfo = (
|
|
default => {
|
|
branch => '',
|
|
description => 'My CVS repository',
|
|
module => 'All',
|
|
repository => '/cvsroot',
|
|
shortdesc => 'Mine',
|
|
},
|
|
,
|
|
);
|
|
|
|
1;
|