Skip to content

Instantly share code, notes, and snippets.

@usualoma
Created February 8, 2014 05:17
Show Gist options
  • Save usualoma/8877049 to your computer and use it in GitHub Desktop.
Save usualoma/8877049 to your computer and use it in GitHub Desktop.
#!/usr/bin/env perl
use strict;
use warnings;
BEGIN {
use Cwd qw(getcwd);
$ENV{MT_HOME} ||= getcwd;
}
use lib "$ENV{MT_HOME}/lib", "$ENV{MT_HOME}/extlib";
use MT::Tool;
use Reply;
my $reply = Reply->new( config => "$ENV{HOME}/.replyrc" );
$reply->step('my $mt = MT::Tool->set_up_app; undef');
$reply->run;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment