Hi All
I am trying to run a JIRA CLI command but unfortunately it is not returning me the results.
./jira.sh --action getIssueList --jql "issuefunction in linkedIssuesOf("project=<my project>", "is Epic of")"
I can confirm that the JQL works fine when run from the issue navigator but the command falls apart when run via CLI.
Any idea how i can make it to work?
Rahul
Can you be more specific regarding "the command falls apart"? Just looking at the request, it is not syntactically correct. You must escape inner double quotes or you will get a command line syntax error. Namely:
-a getIssueList --jql "issuefunction in linkedIssuesOf(\"project=<my project>\", \"is Epic of\") "
If the JQL works from the UI, then you should get the same list of issues running it through the CLI.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.