Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Commit f81d55a

Browse files
committed
Merge pull request #6848 from busykai/fix-6828
Fix #6828. Bracketize Win paths returned by node.
2 parents 9caa3d5 + 1dd4f03 commit f81d55a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/extensibility/Package.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ define(function (require, exports, module) {
251251
// Download the bits (using Node since brackets-shell doesn't support binary file IO)
252252
var r = extensionManager.downloadFile(downloadId, urlInfo.url, PreferencesManager.get("proxy"));
253253
r.done(function (result) {
254-
d.resolve({ localPath: result, filenameHint: urlInfo.filenameHint });
254+
d.resolve({ localPath: FileUtils.convertWindowsPathToUnixPath(result), filenameHint: urlInfo.filenameHint });
255255
}).fail(function (err) {
256256
d.reject(err);
257257
});

0 commit comments

Comments
 (0)