Skip to content

Commit

Permalink
Merge pull request #1303 from Homebrew/vscode_downcase_extensions
Browse files Browse the repository at this point in the history
vscode_extension_dumper: downcase extension names.
  • Loading branch information
MikeMcQuaid authored Feb 9, 2024
2 parents cdb1b45 + 1813246 commit bf76170
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 bf76170

Please sign in to comment.