summaryrefslogtreecommitdiffstats
path: root/scripts/search.pl
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/search.pl')
-rw-r--r--scripts/search.pl13
1 files changed, 0 insertions, 13 deletions
diff --git a/scripts/search.pl b/scripts/search.pl
deleted file mode 100644
index 6e0f7245d..000000000
--- a/scripts/search.pl
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/usr/bin/perl
-use strict;
-use warnings;
-use Bugzilla;
-use JSON '-convert_blessed_universally';
-
-print JSON->new->pretty->encode(
- Bugzilla::Elastic::Search->new(
- quicksearch => "@ARGV",
- fields => ['bug_id', 'short_desc'],
- order => ['bug_id'],
- )->es_query
-);