[builder] don't exit if no args are given, allowing creating up-to-dated container with all set-up for compilation also if no args are given. adding --help

This commit is contained in:
mudler
2016-04-08 19:20:20 +02:00
parent fb930cdeb3
commit f81e90d555
+5 -6
View File
@@ -33,17 +33,15 @@ my $build_injected_args = $ENV{BUILD_INJECTED_ARGS};
my $make_conf = $ENV{MAKE_CONF};
my @overlays;
my $help=0;
GetOptions(
'layman|overlay:s{,}' => \@overlays,
'equo|install:s{,}' => \@equo_install,
'equorm|remove:s{,}' => \@equo_remove
'equorm|remove:s{,}' => \@equo_remove,
'help|?' => \$help
);
if ( @ARGV == 0 ) {
help();
die();
}
help() if $help;
$ENV{LC_ALL} = "en_US.UTF-8"; #here be dragons
@@ -162,6 +160,7 @@ sub help {
"You can supply multiple overlays as well: $0 plasma-meta --layman kde plab",
"The documentation is available at https://github.com/Sabayon/devkit",
"";
exit 0;
}
say "****************************************************";