#!/usr/bin/env perl

package
	git_update_environment;

# ABSTRACT: Update a Puppet environment from another branch

use strict;
use warnings;

use App::Puppet::Environment::Updater;

App::Puppet::Environment::Updater->new_with_options()->run();


__END__
=pod

=head1 NAME

git_update_environment - Update a Puppet environment from another branch

=head1 VERSION

version 0.001000

=head1 SYNOPSIS

	$ git update-environment --environment production --from development

=head1 SEE ALSO

=over

=item *

L<App::Puppet::Environment::Updater|App::Puppet::Environment::Updater>

=back

=head1 AUTHOR

Manfred Stock <mstock@cpan.org>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2014 by Manfred Stock.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut

