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

Adding 64 bit binaries for CodeHelper.exe #14784

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/filesystem/impls/appshell/node/CSharpWatcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ function watchPath(path, ignored, _watcherMap) {
// fspath.resolve will normalize slashes to windows format
fspath.resolve(path)
];
var handle = cp.spawn(fspath.resolve(__dirname, "win32", "CodeHelper.exe"), args);
var handle = cp.spawn(fspath.resolve(__dirname, 'win' + process.arch.slice(-2), "CodeHelper.exe"), args);

// Events over stdout
handle.stdout.on("data", function (buffer) {
Expand Down
Binary file not shown.