Skip to content

Commit

Permalink
vscode_extension_dumper: downcase extension names.
Browse files Browse the repository at this point in the history
VSCode seems to be doing this itself in newer versions so this will
allow for some more consistency.
  • Loading branch information
MikeMcQuaid committed Feb 9, 2024
1 parent 1f80af3 commit 1813246
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/bundle/vscode_extension_dumper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def reset!

def extensions
@extensions ||= if Bundle.vscode_installed?
`code --list-extensions 2>/dev/null`.split("\n")
`code --list-extensions 2>/dev/null`.split("\n").map(&:downcase)
else
[]
end
Expand Down

0 comments on commit 1813246

Please sign in to comment.