dde8988345
Adding the script and required items for deployment handler script to work
11 lines
267 B
Perl
Executable file
11 lines
267 B
Perl
Executable file
#! /usr/bin/env perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use FindBin qw/ $Bin /;
|
|
use lib "$Bin/../lib";
|
|
|
|
use Pear::LocalLoop::Schema::Script::DeploymentHandler;
|
|
|
|
Pear::LocalLoop::Schema::Script::DeploymentHandler->new_with_actions(schema_class => 'Pear::LocalLoop::Schema');
|