summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2018-06-20 03:28:50 +0200
committerDylan William Hardison <dylan@hardison.net>2018-06-28 22:41:58 +0200
commite1b48df3b5cdd81920782a8585864af3b294e919 (patch)
tree13bb7c184950b6f1d911e387bbff817e42d1ee2d /scripts
parent561a205df8fdb1950df167c6915d52601630c08a (diff)
downloadbugzilla-e1b48df3b5cdd81920782a8585864af3b294e919.tar.gz
bugzilla-e1b48df3b5cdd81920782a8585864af3b294e919.tar.xz
lots of hacking
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/bugzilla_quantum18
1 files changed, 0 insertions, 18 deletions
diff --git a/scripts/bugzilla_quantum b/scripts/bugzilla_quantum
deleted file mode 100755
index 9069a2f05..000000000
--- a/scripts/bugzilla_quantum
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/env perl
-use 5.10.1;
-use strict;
-use warnings;
-
-use File::Basename qw(basename dirname);
-use File::Spec::Functions qw(catdir);
-use Cwd qw(realpath);
-
-BEGIN {
- require lib;
- my $dir = realpath( catdir(dirname(__FILE__), '..') );
- lib->import( $dir, catdir( $dir, 'lib' ), catdir( $dir, qw(local lib perl5) ) );
-}
-use Mojolicious::Commands;
-
-# Start command line interface for application
-Mojolicious::Commands->start_app('Bugzilla::Quantum');