Skip to content

Commit b9373fd

Browse files
committed
fix: addon path variable for macos
1 parent 792f46f commit b9373fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

script/files.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -930,7 +930,7 @@ function m.resolvePathPlaceholders(path)
930930
return "~/.config/Code/" .. dataPath
931931
end
932932
elseif platform.os == "macos" then
933-
return "~/Library/Application/Support/Code/" .. dataPath
933+
return "~/Library/Application Support/Code/" .. dataPath
934934
end
935935
elseif key:sub(1, 4) == "env:" then
936936
local env = os.getenv(key:sub(5))

0 commit comments

Comments
 (0)