aboutsummaryrefslogtreecommitdiff
path: root/sbofind
diff options
context:
space:
mode:
authorJacob Pipkin <j@dawnrazor.net>2012-12-04 22:06:18 -0600
committerJacob Pipkin <j@dawnrazor.net>2012-12-04 22:06:18 -0600
commit08cde18b1fcf7d46dcd814892a4cee0f4f209734 (patch)
tree9044b9b96089c815e4bfb55267fb7a51aab19dd2 /sbofind
parentf6bf4ba365c233da686c97f5f5d2b378998d1867 (diff)
downloadsbotools-08cde18b1fcf7d46dcd814892a4cee0f4f209734.tar.xz
sbofind -q shows queue in reversed order
Diffstat (limited to 'sbofind')
-rwxr-xr-xsbofind2
1 files changed, 1 insertions, 1 deletions
diff --git a/sbofind b/sbofind
index 7da97cd..c542f8d 100755
--- a/sbofind
+++ b/sbofind
@@ -98,7 +98,7 @@ sub get_file_contents ($) {
sub show_build_queue ($) {
exists $_[0] or script_error 'show_build_queue requires an argument.';
my $queue = get_build_queue([shift], {});
- return join(" ", @$queue);
+ return join(" ", reverse @$queue);
}
my $findings = perform_search $search;