From a9dd1ed31097ded57b35771e9c198d91a4f56344 Mon Sep 17 00:00:00 2001 From: asrar Date: Fri, 12 Jun 2020 12:01:36 +0530 Subject: [PATCH] Fix command for sprint issues w/o project Instead of echo error message, show all sprint issues --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b1c391a5..b73bfc86 100644 --- a/README.md +++ b/README.md @@ -234,7 +234,7 @@ custom-commands: {{jira}} list --template table --query "sprint in openSprints() and type != epic and resolution = unresolved and project=$JIRA_PROJECT ORDER BY rank asc, created" else # otherwise list issues for all project - echo "\"project: ...\" configuration missing from .jira.d/config.yml" + {{jira}} list --template table --query "sprint in openSprints() and type != epic and resolution = unresolved ORDER BY rank asc, created" fi ```