From 549d84750f9e5fd2defa222fa2d26e9f00162d46 Mon Sep 17 00:00:00 2001 From: Peter Flynn Date: Thu, 2 Oct 2014 01:17:15 -0700 Subject: [PATCH 1/2] Change Debug > Open Brackets Source to open the folder in the OS instead of opening it in Brackets, to avoid opening a symlink path and hitting #6692. --- src/extensions/default/DebugCommands/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extensions/default/DebugCommands/main.js b/src/extensions/default/DebugCommands/main.js index 6d84c4d3431..2beb5b80342 100644 --- a/src/extensions/default/DebugCommands/main.js +++ b/src/extensions/default/DebugCommands/main.js @@ -256,7 +256,7 @@ define(function (require, exports, module) { function handleOpenBracketsSource() { // Brackets source dir w/o the trailing src/ folder var dir = FileUtils.getNativeBracketsDirectoryPath().replace(/\/[^\/]+$/, "/"); - ProjectManager.openProject(dir); + brackets.app.showOSFolder(dir); } /* Register all the command handlers */ From fede3b50981e8e807d885fbba4c96c9c44322733 Mon Sep 17 00:00:00 2001 From: Jeff Booher Date: Thu, 2 Oct 2014 04:00:46 -0700 Subject: [PATCH 2/2] Remove unused module (ProjectManager) This was causing a travis build failure --- src/extensions/default/DebugCommands/main.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/extensions/default/DebugCommands/main.js b/src/extensions/default/DebugCommands/main.js index 2beb5b80342..de383138fc3 100644 --- a/src/extensions/default/DebugCommands/main.js +++ b/src/extensions/default/DebugCommands/main.js @@ -41,7 +41,6 @@ define(function (require, exports, module) { Strings = brackets.getModule("strings"), PreferencesManager = brackets.getModule("preferences/PreferencesManager"), LocalizationUtils = brackets.getModule("utils/LocalizationUtils"), - ProjectManager = brackets.getModule("project/ProjectManager"), ErrorNotification = require("ErrorNotification"), NodeDebugUtils = require("NodeDebugUtils"), PerfDialogTemplate = require("text!htmlContent/perf-dialog.html"),