aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Ferrell <major@homeonderanged.org>2014-01-15 09:51:20 -0800
committerMark Ferrell <major@homeonderanged.org>2014-01-15 09:51:20 -0800
commit539129f44f0adf7d8c20875daacc3b3e33d58fdb (patch)
tree09fd3527244d9969abb98cb77e5e0c91c7fb4939
parent935bb8f69b8492159df54e2448213716ccc7f4ad (diff)
Fix querying categories
* build query -c was setting QUERY_ACTIONS, which is invalid. The correct variable to set is QUERY_ACTION. Fixes #51
-rwxr-xr-xbuilder/build-query2
1 files changed, 1 insertions, 1 deletions
diff --git a/builder/build-query b/builder/build-query
index 78cd457..cf4a7e4 100755
--- a/builder/build-query
+++ b/builder/build-query
@@ -41,7 +41,7 @@ while [ "$#" -gt "0" ]; do
(-B|-build-deps|--build-deps)
QUERY_ACTION="bdeps";;
(-c|-category|--category)
- QUERY_ACTIONS="category";;
+ QUERY_ACTION="category";;
(-d|-description|--description)
QUERY_ACTION="descr";;
(-D|-destdir|--destdir)