App-gimpgitbuild
    
    
  
  
  
view release on metacpan or search on metacpan
lib/App/gimpgitbuild/Command/build.pm view on Meta::CPAN
    $ENV{PATH}            = $env->{PATH};
    $ENV{PKG_CONFIG_PATH} = $env->{PKG_CONFIG_PATH};
    $ENV{XDG_DATA_DIRS}   = $env->{XDG_DATA_DIRS};
    _ascertain_xvfb_run_presence();
    _ascertain_lack_of_gtk_warnings();
    _ascertain_gjs_presence();
    $worker->_run_the_mode_on_all_repositories();
    use Term::ANSIColor qw/ colored /;
    print colored( [ $ENV{HARNESS_SUMMARY_COLOR_SUCCESS} || 'bold green' ],
        "\n== Success ==\n\n" );
    return;
}
1;
__END__
=pod
lib/App/gimpgitbuild/Command/cleanbuild.pm view on Meta::CPAN
sub execute
{
    my ( $self, $opt, $args ) = @_;
    my $worker = App::gimpgitbuild::API::Worker->new(
        { _mode => 'clean', _process_executor => 'perl', } );
    $worker->_run_the_mode_on_all_repositories();
    use Term::ANSIColor qw/ colored /;
    print colored( [ $ENV{HARNESS_SUMMARY_COLOR_SUCCESS} || 'bold green' ],
        "\n== Success ==\n\n" );
    return;
}
1;
__END__
=pod
( run in 0.313 second using v1.01-cache-2.11-cpan-5dc5da66d9d )