mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-22 13:50:09 +00:00
Correct error message.
This commit is contained in:
parent
2d66016102
commit
b559f2f221
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@
|
||||||
# jira ABC-123 # Opens an existing issue
|
# jira ABC-123 # Opens an existing issue
|
||||||
open_jira_issue () {
|
open_jira_issue () {
|
||||||
if [ ! -f .jira-url ]; then
|
if [ ! -f .jira-url ]; then
|
||||||
echo "There is no .jira-url file in the current directory or your home folder..."
|
echo "There is no .jira-url file in the current directory..."
|
||||||
return 0;
|
return 0;
|
||||||
else
|
else
|
||||||
jira_url=$(cat .jira-url);
|
jira_url=$(cat .jira-url);
|
||||||
|
|
Loading…
Reference in a new issue