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

Commit

Permalink
rename brackets-node.exe to node.exe
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffryBooher committed Jan 24, 2014
1 parent 664542f commit 45c3f8b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Gruntfile.js
Expand Up @@ -100,7 +100,7 @@ module.exports = function (grunt) {
"locales/**",
"node-core/**",
"Brackets.exe",
"Brackets-node.exe",
"node.exe",
"cef.pak",
"devtools_resources.pak",
"icudt.dll",
Expand Down
2 changes: 1 addition & 1 deletion appshell.gyp
Expand Up @@ -103,7 +103,7 @@
{
# Copy node executable to the output directory
'destination': '<(PRODUCT_DIR)',
'files': ['deps/node/Brackets-node.exe'],
'files': ['deps/node/node.exe'],
},
{
# Copy node server files to the output directory
Expand Down
2 changes: 1 addition & 1 deletion appshell/config.h
Expand Up @@ -36,7 +36,7 @@
#define WINDOW_TITLE APP_NAME

// Paths for node resources are relative to the location of the appshell executable
#define NODE_EXECUTABLE_PATH "Brackets-node.exe"
#define NODE_EXECUTABLE_PATH "node.exe"
#define NODE_CORE_PATH "node-core"
#define FIRST_INSTANCE_MUTEX_NAME (APP_NAME L".Shell.Instance")
#endif
Expand Down
2 changes: 1 addition & 1 deletion tasks/setup.js
Expand Up @@ -255,7 +255,7 @@ module.exports = function (grunt) {
grunt.file.mkdir("deps/node");

// copy node.exe to Brackets-node
grunt.file.copy(exeFile, "deps/node/Brackets-node.exe");
grunt.file.copy(exeFile, "deps/node/node.exe");

// unzip NPM
unzip(npmFile, "deps/node").then(function () {
Expand Down

0 comments on commit 45c3f8b

Please sign in to comment.