Liquibase-Git
view release on metacpan - search on metacpan
view release on metacpan or search on metacpan
lib/Liquibase/Git.pm view on Meta::CPAN
run_command(cmd => $self->liquibase_command_stem." updateSQL");
}
sub wetrun {
my $self = shift;
run_command(cmd => $self->liquibase_command_stem." update");
run_command(cmd => 'echo PASSED');
}
sub update {
my $self = shift;
$self->retrieve_changeset_from_git;
chdir $self->temp_dir;
$self->dryrun;
$self->wetrun;
}
sub updateSQL {
my $self = shift;
$self->retrieve_changeset_from_git;
chdir $self->temp_dir;
$self->dryrun;
}
1;
view all matches for this distributionview release on metacpan - search on metacpan
( run in 1.067 second using v1.00-cache-2.02-grep-82fe00e-cpan-4673cadbf75 )