Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
f793baf3
Unverified
Commit
f793baf3
authored
Oct 05, 2021
by
Marc Cornellà
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(jsontools): fix broken conditional in zsh 5.0.2 (#10262)
Fixes #10262
parent
b621eee2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
jsontools.plugin.zsh
plugins/jsontools/jsontools.plugin.zsh
+2
-2
No files found.
plugins/jsontools/jsontools.plugin.zsh
View file @
f793baf3
...
...
@@ -7,7 +7,7 @@ if [[ -n "$JSONTOOLS_METHOD" ]]; then
fi
# If method undefined, find the first one that is installed
if
[[
!
-v
JSONTOOLS_METHOD
]]
;
then
if
[[
-z
"
$JSONTOOLS_METHOD
"
]]
;
then
for
JSONTOOLS_METHOD
in
node python ruby
;
do
# If method found, break out of loop
((
$+
commands[
$JSONTOOLS_METHOD
]
))
&&
break
...
...
@@ -16,7 +16,7 @@ if [[ ! -v JSONTOOLS_METHOD ]]; then
done
# If no methods were found, exit the plugin
[[
-
v
JSONTOOLS_METHOD
]]
||
return
1
[[
-
n
"
$JSONTOOLS_METHOD
"
]]
||
return
1
fi
# Define json tools for each method
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment