Skip to content
This repository was archived by the owner on Mar 20, 2025. It is now read-only.

Commit dccd67d

Browse files
committed
vscode_extension_dumper: do not downcase since that can dump (while creating from scratch) an incorrect extension name
(The extension as named by their author should retain case)
1 parent 687275a commit dccd67d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/bundle/vscode_extension_dumper.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def reset!
1010

1111
def extensions
1212
@extensions ||= if Bundle.vscode_installed?
13-
`code --list-extensions 2>/dev/null`.split("\n").map(&:downcase)
13+
`code --list-extensions 2>/dev/null`.split("\n")
1414
else
1515
[]
1616
end

0 commit comments

Comments
 (0)