...
Many people continue to use the original jira, confluence, or similar start scripts that have been in the distribution since the beginning. Some may have switched over to and customized the atlassian start script
- If you haven't customized the these, then the acli start script included in the distribution will most likely work out in a similar fashion right away.
- If you have customized the script, it will need a small change as indicated below:
...
- . We will use jira as an example, but all the others are similar.
Code Block |
---|
language | bash |
---|
title | Example - jira.bat |
---|
|
java -jar "%dirPath%"/lib/jira-cli-8.8.0.jar %*
change to
java -jar "%dirPath%"/lib/acli-9.0.0.jar jira %* |
Code Block |
---|
language | bash |
---|
title | Example - jira.sh |
---|
|
java -jar `dirname $0`/lib/jira-cli-8.8.0.jar "$@"
change to
java -jar `dirname $0`/lib/jira-cli-9.0.0.jar jira "$@" |
The Atlassian script may have one or more lines that reference the call string. Each reference will need to be changed
Code Block |
---|
language | bash |
---|
title | Example - atlassian.sh |
---|
|
callString="jira-cli-${cliVersion}.jar ... "
change to
callString="acli-${cliVersion}.jar jira ... " |