gluon/scripts/configure.pl

17 lines
213 B
Perl
Raw Normal View History

2013-09-28 16:39:32 +00:00
#!/usr/bin/perl
use warnings;
use strict;
use POSIX qw(strftime);
sub nightly {
strftime "%Y%m%d", localtime;
}
2013-09-28 16:39:32 +00:00
2013-09-30 17:04:35 +00:00
our $CONFIG = do $ENV{GLUONDIR} . '/site/site.conf';
2013-09-28 16:39:32 +00:00
2013-09-30 17:04:35 +00:00
my $script = shift @ARGV;
do $script;